gpt4 book ai didi

python - 获取列表中的所有非唯一元素

转载 作者:太空宇宙 更新时间:2023-11-03 14:00:09 25 4
gpt4 key购买 nike

我正在尝试构建一个代码,返回一个包含非唯一值的列表,例如 [1,2,2,3] => [2,2] 且函数不区分大小写,例如:['p','P','a','b',1,5,6] => ['p','P'].

这是我到目前为止的想法:

def non_unique(*data):
tempLst = [x for x in data if (data.count(x) > 1 if (ord('a') <= ord(x) <= ord('z') or ord('A') <= ord(x) <= ord('Z')) and (data.count(x.upper()) + data.count(x.lower()) > 1)]
return tempLst

这些是测试示例:

if __name__ == "__main__":
assert isinstance(non_unique([1]), list)
assert non_unique([1, 2, 3, 1, 3]) == [1, 3, 1, 3]
assert non_unique([1, 2, 3, 4, 5]) == []
assert non_unique([5, 5, 5, 5, 5]) == [5, 5, 5, 5, 5]
assert non_unique([10, 9, 10, 10, 9, 8]) == [10, 9, 10, 10, 9]


assert non_unique(['P', 7, 'j', 'A', 'P', 'N', 'Z', 'i',
'A', 'X', 'j', 'L', 'y', 's', 'K', 'g',
'p', 'r', 7, 'b']) == ['P', 7, 'j', 'A', 'P', 'A', 'j', 'p', 7]

最佳答案

使用Counter来自 collections :

from collections import Counter

def non_unique(l):
def low(x):
return x.lower() if isinstance(x, str) else x
c = Counter(map(low, l))
return [x for x in l if c[low(x)] > 1]

测试:

>>> non_unique([1, 2, 3, 1, 3])
[1, 3, 1, 3]
>>> non_unique([1, 2, 3, 4, 5])
[]
>>> non_unique([5, 5, 5, 5, 5])
[5, 5, 5, 5, 5]
>>> non_unique([10, 9, 10, 10, 9, 8])
[10, 9, 10, 10, 9]
>>> non_unique(['P', 7, 'j', 'A', 'P', 'N', 'Z', 'i',
... 'A', 'X', 'j', 'L', 'y', 's', 'K', 'g',
... 'p', 'r', 7, 'b'])
['P', 7, 'j', 'A', 'P', 'A', 'j', 'p', 7]

关于python - 获取列表中的所有非唯一元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50316132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com