标签: python python-3.x data-structures set time-complexity
在Python3中,将两个time complexity与Sets符号进行比较的==是什么?
time complexity
Sets
==
a = set({1, 3, 9, 7}) b = set({1, 3, 4, 5, 8, 13}) print(a == b) # False