def solution(phone_book):
dict = {}
for i in phone_book:
dict[i] = 1
for i in phone_book:
temp = ''
for j in i:
temp += j
if temp in dict and temp != i:
return False
answer = True
return answer
728x90
'코테 > 프로그래머스' 카테고리의 다른 글
프로그래머스 베스트앨범 (0) | 2022.12.28 |
---|---|
프로그래머스 위장 (0) | 2022.12.28 |
프로그래머스 폰켓폰 (0) | 2022.12.28 |
프로그래머스 네트워크 (0) | 2022.12.27 |
[프로그래머스] [Python] 게임 맵 최단거리 - bfs, dfs (0) | 2022.12.27 |