劍指offer python版 38.字符串的排列

""" 輸入一個字符串,打印出該字符串中字符的全部排列。 如輸入abc,則打印出abc、acb、bac、cab、cba """ class Solution: def Permutation(self, s): if s == None: return [] if len(s) == 1: return lis
相關文章
相關標籤/搜索