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
- java 기술면접
- 웹어플리케이션 서버
- 프로래머스
- 백준 16719
- JVM
- 백준 17779
- 백준 파이썬
- 파이썬
- MySQL
- Spring
- Coroutine
- spring cloud
- 백준 17626
- spring security
- Kotlin
- 백준 15685
- 프로그래머스
- springboot
- 백준 16235
- with recursive
- sql 기술면접
- re.split
- Spring Boot
- MSA
- 백준 16236
- 백준 19238
- spring oauth
- java
- JPA
- 백준
Archives
- Today
- Total
목록프로그래머스 단어변환 (1)
시작이 반
[프로그래머스] 단어 변환(python 파이썬)
result = list() def solution(begin, target, words): global result answer = 0 if target not in words: return 0 elif target == begin: return 0 visited = [False] * len(words) dfs(begin, target, words, visited, answer) return min(result) def dfs(begin, target, words, visited, answer): global result if begin == target: return result.append(answer) change = list() for word in words: #바꿀수 있는 단어 찾기 coun..
알고리즘/Programmers
2021. 3. 10. 20:19