Skip to content

Commit 1af8102

Browse files
committed
104차 3번 문제 풀이 (푸는중)
1 parent 8c7ec7d commit 1af8102

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
def solution(begin, target, words):
2+
answer = 0
3+
4+
if target not in words:
5+
return 0
6+
7+
alpha = []
8+
for word in words:
9+
alpha.append(list(map(str, word.rstrip())))
10+
11+
def dfs(word, target):
12+
word = list(map(str, word.rstrip()))
13+
14+
15+
16+
return answer

0 commit comments

Comments
 (0)