标签:span from ret 空间复杂度 lis 元素 ict 时间复杂度 int
第一种:set集合,去重数组 set集合,元素无序,不重复
Python: arr=[‘a‘,‘b‘,‘c‘]
el=set(arr)
print(el)
第二种: 放到一个字典里作为key
def getNonRepeat(data):
return list(dict.fromKeys(data))
标签:span from ret 空间复杂度 lis 元素 ict 时间复杂度 int
原文地址:https://www.cnblogs.com/hongchen01/p/14279335.html