标签: python python-3.x list permutation
我想检查两个列表是否相互排列。我使用了这种比较:
dict.fromkeys(l1) == dict.fromkeys(l2)
我不知道fromkeys()方法的复杂性,因此我想知道这是否是最好的方法。是吗?
fromkeys()