Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 릿코드풀이
- 릿코드
- 릿코드풀기
- python sorted
- python 릿코드
- LeetCode
- 잇츠디모
- python xor
- 파이썬 알고리즘 풀기
- 알고리즘풀이
- 릿코드 풀기
- leetcode풀기
- 파이썬 릿코드
- 파이썬 알고리즘
- python zip_longest
- 파이썬릿코드
- 상가수익률계산기
- leetcode풀이
- 릿코드 파이썬
- 파이썬 프로그래머스
- 파이썬릿코드풀기
- leetcode 풀기
- python Leetcode
- 코틀린기초
- binary search
- 알고리즘풀기
- python 알고리즘
- 파이썬알고리즘
- 파이썬알고리즘풀기
- python priority queue
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 47. Permutations II 본문
반응형
47. Permutations II
https://leetcode.com/problems/permutations-ii/
문제)
솔루션1) 백트래킹
백트래킹 방식으로 순열을 한땀 한땀 구현합니다.
class Solution:
def permuteUnique(self, nums: List[int]) -> List[List[int]]:
res = []
def recur(cur, remain):
if not remain:
res.append(tuple(cur))
return
for i, n in enumerate(remain):
recur(cur + [n], remain[:i] + remain[i+1:])
recur([], nums)
return set(res)
솔루션2) permutations()
파이썬 permutations() 함수를 사용하였습니다.
class Solution:
def permuteUnique(self, nums: List[int]) -> List[List[int]]:
nums = tuple(permutations(nums, len(nums)))
unique_nums = dict.fromkeys(nums, None)
return list(unique_nums)
함께 보면 좋은 글:
2021.11.11 - [알고리즘/LeetCode] - LeetCode 풀기 - 46. Permutations
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 2120. Execution of All Suffix Instructions Staying in a Grid (0) | 2022.03.10 |
---|---|
LeetCode 풀기 - 413. Arithmetic Slices (0) | 2022.03.09 |
LeetCode 풀기 - 2181. Merge Nodes in Between Zeros (0) | 2022.03.04 |
LeetCode 풀기 - 287. Find the Duplicate Number (0) | 2022.03.02 |
LeetCode 풀기 - 34. Find First and Last Position of Element in Sorted Array (0) | 2022.02.28 |
Comments