반응형
1. 문제
2. 풀이
sort 하면 길이대로 정렬되는 것
str.startswith(str2) 시작하는 것 확인하는 라이브러리
3. 구현
def solution(phone_book):
answer = True
phone_book.sort()
for num1, num2 in zip(phone_book, phone_book[1:]):
if num2.startswith(num1):
return False
return True
반응형
'PS > 프로그래머스' 카테고리의 다른 글
[분할정복]프로그래머스 [카카오 인턴] 수식 최대화 python (0) | 2021.06.17 |
---|---|
프로그래머스 예상대진표 python: Queue (0) | 2021.06.16 |
프로그래머스 짝지어 제거하기 python (0) | 2021.06.14 |
프로그래머스 오픈채팅방 python (0) | 2021.06.14 |
프로그래머스 124나라의 숫자 python (0) | 2021.06.14 |
댓글