티스토리 뷰
https://programmers.co.kr/learn/courses/30/lessons/43163
def solution(begin, target, words):
if target not in words:
return 0
answer = 0
start = [begin]
while(len(words) != 0):
for s in start:
tmp = []
for word in words:
cnt = 0
for i in range(len(word)):
if s[i] != word[i]:
cnt += 1
if cnt == 2:
break
if cnt == 1:
tmp.append(word)
words.remove(word)
answer += 1
if target == "".join(tmp):
break
else:
start = tmp
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 두 개 뽑아서 더하기 - Python (0) | 2020.09.26 |
---|---|
[프로그래머스] 같은 숫자는 싫어 - Python (0) | 2020.07.14 |
[프로그래머스] 위장 - Python (0) | 2020.07.12 |
[프로그래머스] 네트워크 - Python (0) | 2020.07.11 |
[프로그래머스] 모의고사 - Python (0) | 2020.07.11 |