본문 바로가기
python-algorithm

leetcode 47. Permutations II

by 무적김두칠 2022. 5. 12.

1
2
3
4
5
6
7
8
from itertools  import permutations
class Solution:
    def permuteUnique(self, nums: List[int]) -> List[List[int]]:
        ans=[]
        for i in permutations(nums) :
            if list(i) not in ans:
                ans.append(list(i))
        return(ans)
cs

 

반응형

댓글