Python сравнить списки без упорядки
def compare(s, t):
return sorted(s) == sorted(t)
Anxious Axolotl
def compare(s, t):
return sorted(s) == sorted(t)