from collections import defaultdict def is_permutation(str1, str2): if str1 is None or str2 is None: return False if len(str1) != len(str2): return False
確定! 回上一頁