from collections import deque
def ck(w1, w2):
cnt = 0
lenth = len(w1)
for i in range(lenth):
if w1[i] == w2[i]: cnt += 1
return True if cnt == lenth-1 else False
def solution(begin, target, words):
if target not in words:
return 0
q = deque()
for w in words:
if ck(begin, w):
q.append([w, 1])
while q:
word, cnt = q.popleft()
if word == target:
return cnt
for w in words:
if ck(word, w):
q.append([w, cnt+1])
return 0
programmers.co.kr/learn/courses/30/lessons/43163
'알고리즘 > 프로그래머스(Python)' 카테고리의 다른 글
스택 - 기능개발 / 파이썬 (0) | 2020.11.03 |
---|---|
스택 - 주식가격 / 파이썬 (0) | 2020.11.03 |
dfs, bfs - 네트워크 / 파이썬 (0) | 2020.11.02 |
bfs - 타겟 넘버 / 파이썬 (0) | 2020.11.02 |
완전탐색 - 소수 찾기 / 파이썬 (0) | 2020.11.01 |