반응형
250x250
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 #백준 #9375 #패션왕 #신해빈
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- dfs #leetcode #python #graph #그래프
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- 파이썬 #zip
- 리트코드 #팰린드롬 #파이썬
- leetcode #subsets #dfs #itertools #python
- leetcode #python #dfs #재귀
- dfs #그래프 #graph #python #leetcode #course #schedule
- Python #leetcode #dfs #그래프 #백트래킹
- dfs #leetcode #python
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- dfs #python #leetcode
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- 아스테리스크 #Asterisk #파이썬
- gcd #최대공약수 #백준 #2981 #검문
- dfs #python #leetcode #combination
- final #java #자바 #안드로이드
- dfs #bfs #leetcode #python
- 2004 #조합 0의 개수 #백준
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #bfs #이진트리 #파이썬 #리트코드
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- 코틀린 #Do it #깡샘 #안드로이드
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode/Python] 78. 부분 집합(Subsets) 본문
728x90
반응형
모든 부분 집합을 리턴하라.
Example:
Input: nums = [1,2,3]
Output: [[], [1], [2], [1,2], [3], [1,3], [2,3], [1,2,3]]
1. 내가 직접 푼 코드(itertools 짱짱맨)
1
2
3
4
5
6
7
8
|
class Solution:
def subsets(self, nums: List[int]) -> List[List[int]]:
result = []
for i in range(len(nums)+1):
result += list(itertools.combinations(nums,i))
return result
|
cs |
해설:
어떻게 풀지 고민하다가 itertools가 떠올랐다!
속도는 상위 5퍼센트 안에 들더라.
combinations( 수열 , 뽑을 개수 )를 넣어주면 된다.
** 깔끔한 답안 **
2. 트리의 모든 DFS 결과
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Solution:
def subsets(self, nums: List[int]) -> List[List[int]]:
result = []
def dfs(index, path):
# 매번 결과 추가
result.append(path)
# 경로를 만들면서 DFS
for i in range(index, len(nums)):
dfs(i + 1, path + [nums[i]])
dfs(0, [])
return result
|
cs |
해설:
다음 그림과 같이 코드를 짜면 된다!
728x90
반응형