littlemuggle
littlemuggle
全部文章
题解
归档
标签
去牛客网
登录
/
注册
littlemuggle的博客
全部文章
/ 题解
(共1篇)
题解 | #没有重复项数字的全排列#
回溯的思想,当遍历到响应的元素后,注意还有一步测回的操作。 class Solution: def permute(self , num: List[int]) -> List[List[int]]: # write code here if not ...
Python3
枚举
回溯
2022-05-22
2
419