반응형
https://leetcode.com/problems/combinations/
Think
이번에도 영상을 보자..~
https://www.youtube.com/watch?v=q0s6m7AiM7o
Solution
1. 파이썬 답게,, 라이브러리를 사용하는 풀이
class Solution(object):
def combine(self, n, k):
"""
:type n: int
:type k: int
:rtype: List[List[int]]
"""
# 단 한 줄로 풀린다
return list(itertools.combinations(range(1, n+1), k))
2. dfs를 직접 구현하는 풀이
-> 이것도 나중에 꼭 해보자!!
Get
조합 문제는 itertools.combinations() 사용!
반응형
'DSA > Algorithm' 카테고리의 다른 글
[LeetCode 104] Maximum Depth of Binary Tree (0) | 2022.10.10 |
---|---|
[LeetCode 78] Subsets (1) | 2022.10.04 |
[LeetCode 17] Letter Combinations of a Phone Number (1) | 2022.10.04 |
[LeetCode 771] Jewels and Stones (0) | 2022.09.27 |
[LeetCode 622] Design Circular Queue (0) | 2022.09.27 |