일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 다익스트라
- heapq
- backjoon
- dfs
- python
- Set
- 정규식
- lambda
- 재귀함수
- 자바
- 프로그래머스
- KAKAO BLIND RECRUITMENT
- java
- 동적 계획법
- 파이썬
- BFS
- 수학
- 위클리 챌린지
- Re
- DateTime
- 백준
- 이분탐색
- Zip
- 정렬
- 카카오
- Combinations
- programmers
- divmod
- 그리디
- 추석맞이 코딩챌린지
Archives
- Today
- Total
상상쓰
[프로그래머스] 전화번호 목록 본문
https://programmers.co.kr/learn/courses/30/lessons/42577?language=python3#
예를 들어, 정렬하면 '119,' '11955' 가 되며 119 와 11955 사이에 접두어가 119 가 아닌 전화번호가 올 수 없다.
def solution(phone_book):
answer = False
N = len(phone_book)
phone_book.sort()
for i in range(N-1):
answer = phone_book[i+1].startswith(phone_book[i])
if answer: break
return not answer
print(solution([['119', '97674223', '1195524421']])) # False
'Coding Test' 카테고리의 다른 글
[프로그래머스] 오픈채팅방 (0) | 2021.07.21 |
---|---|
[백준] 최고의 피자 (0) | 2021.07.20 |
[백준] 다리 놓기 (0) | 2021.07.19 |
[프로그래머스] 가장 먼 노드 (0) | 2021.07.16 |
[프로그래머스] 표 편집 (0) | 2021.07.16 |
Comments