📜  python比较列表无序 - TypeScript代码示例

📅  最后修改于: 2022-03-11 14:48:29.411000             🧑  作者: Mango

代码示例1
def compare(s, t):
    return sorted(s) == sorted(t)