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 |
Tags
- PAT
- MongoDB
- gns3
- 명령어
- network
- worker
- 실습
- IaaS
- mysql
- nodejs
- 용어정리
- kubernetes
- 도커
- 이론
- 네트워크
- node.js
- 클라우드
- RAID
- docker
- Javascript
- 개념
- git
- OpenStack
- dockerfile
- Docker Swarm
- RAPA
- express
- Docker-compose
- 쿠버네티스
- PaaS
Archives
- Today
- Total
융융이'Blog
단어 변환 본문
counts = []
def solution(begin, target, words):
answer = 0
visited = [0] * len(words)
print(visited[0] == 0)
if target in words:
print("있음")
find_array(begin, words, visited, 0, target)
answer = print(min(counts))
else:
return answer
# if last_check(words, target):
return answer
def check(last, target):
count = 0
for i in range(len(target)):
if last[i] == target[i]:
count += 1
if count == len(target) - 1:
return True
else:
return False
def find_array(begin, words, visited, count, target):
array_words = []
for i in words:
if check(begin, i) and visited[words.index(i)] == 0:
array_words.append(i)
if len(array_words) == 0 and begin == target:
counts.append(count)
print("끝")
else:
for i in array_words:
visited[words.index(i)] = 1
find_array(i, words, visited, count + 1, target)
solution("hit", "cog",["hot", "dot", "dog", "lot", "log", "cog"])
왜 런타임 에러가 뜨는지 참...
'2022이전 > 알고리즘(하루에하나씩!)' 카테고리의 다른 글
[SQL]우유와 요거트가 담긴 장바구니(Self Join) (0) | 2020.06.09 |
---|---|
[SQL]보호소에서 중성화한 동물(JOIN) (0) | 2020.06.09 |
Spanning Tree (0) | 2020.05.24 |
타겟 넘버(깊이/너비 우선 탐색(DFS/BFS)) (2) | 2020.03.18 |
프린터(List vs ArrayList 개념) (0) | 2020.02.29 |