반응형
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
- dfs #python #leetcode #combination
- 코틀린 #Do it #깡샘 #안드로이드
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #bfs #이진트리 #파이썬 #리트코드
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- 아스테리스크 #Asterisk #파이썬
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- dfs #python #leetcode
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- leetcode #python #dfs #재귀
- dfs #leetcode #python
- leetcode #subsets #dfs #itertools #python
- dfs #leetcode #python #graph #그래프
- 2004 #조합 0의 개수 #백준
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- final #java #자바 #안드로이드
- dfs #그래프 #graph #python #leetcode #course #schedule
- python #백준 #9375 #패션왕 #신해빈
- gcd #최대공약수 #백준 #2981 #검문
- dfs #bfs #leetcode #python
- Python #leetcode #dfs #그래프 #백트래킹
- 리트코드 #팰린드롬 #파이썬
- 파이썬 #zip
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode/Python] 17. Letter Combinations of a Phone Number 본문
Algorithm Study/leetcode
[LeetCode/Python] 17. Letter Combinations of a Phone Number
오패산개구리 2021. 7. 24. 17:52728x90
반응형
2에서 9까지 숫자가 주어졌을 때 전화번호로 조합 가능한 모든 문자를 출력하라.
Example:
Input: digits = "23"
Output: ["ad","ae","af","bd","be","bf","cd","ce","cf"]
꼭 재귀를 return으로만 구성할 필요는 없다.
특히 이번 문제는 for문을 이용해서 조합하는 문제인데
return을 쓰면 중간에 return 때문에 끊긴다.
** 깔끔한 답안 **
1. 모든 조합 탐색
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
class Solution:
def letterCombinations(self, digits: str) -> List[str]:
def dfs(index, path):
# 끝까지 탐색하면 백트래킹
if len(path) == len(digits):
result.append(path)
return
# 입력값 자릿수 단위 반복
for i in range(index, len(digits)):
# 숫자에 해당하는 모든 문자열 반복
for j in dic[digits[i]]:
dfs(i+1, path + j)
# 예외 처리
if not digits:
return []
dic = {"2": "abc", "3": "def", "4": "ghi", "5": "jkl",
"6": "mno", "7": "pqrs", "8": "tuv", "9": "wxyz"}
result = []
dfs(0,"")
return result
|
cs |
해설:
path를 이용하여 문자를 조합해 나간다.
path의 길이와 digits의 길이가 같으면
조합이 완료된 것이니까 result에 추가하고 리턴한다.
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode/Python] 77. 조합(Combinations) (0) | 2021.07.25 |
---|---|
[LeetCode/Python] 1260. DFS와 BFS (0) | 2021.07.25 |
[LeetCode/Python] 200. 섬의 개수(Number of Islands) (0) | 2021.07.24 |
[LeetCode/Python] 347. 상위 K 빈도 요소(Top K Frequent Elements) (0) | 2021.07.18 |
[LeetCode/Python] 3. 중복 문자 없는 가장 긴 문자열(Longest Substring Without Repeating Charactors) (0) | 2021.07.18 |