반응형
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 #bfs #이진트리 #파이썬 #리트코드
- dfs #bfs #leetcode #python
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #python #leetcode #combination
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- 코틀린 #Do it #깡샘 #안드로이드
- 2004 #조합 0의 개수 #백준
- dfs #leetcode #python #graph #그래프
- 파이썬 #zip
- dfs #python #leetcode
- leetcode #subsets #dfs #itertools #python
- gcd #최대공약수 #백준 #2981 #검문
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- leetcode #python #dfs #재귀
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #leetcode #python
- Python #leetcode #dfs #그래프 #백트래킹
- 리트코드 #팰린드롬 #파이썬
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- python #백준 #9375 #패션왕 #신해빈
- dfs #그래프 #graph #python #leetcode #course #schedule
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- final #java #자바 #안드로이드
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- 아스테리스크 #Asterisk #파이썬
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
Archives
- Today
- Total
목록Python #leetcode #dfs #그래프 #백트래킹 (1)
멋진 개발자가 되고 싶다
[LeetCode/Python] 17. Letter Combinations of a Phone Number
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, pat..
Algorithm Study/leetcode
2021. 7. 24. 17:52