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 | 31 |
Tags
- 불리안
- 차집합
- append()
- 1일차
- 그룹 # 그룹 해체 # 단축키 #figma #Figma
- a=1
- 변수와 입출력
- insert()
- 부스트캠프
- html
- 변할 수 있는
- 합집합
- index()
- 딥러닝
- 변수
- 성적 입력받기
- del()
- false
- Python
- pop()
- Java Script # == # === # difference # 차이
- input()
- null # undefined
- 귀도 반 로섬
- 리스트와 차이점
- 정보를 담을 수 있는 그릇
- 조지 불
- 조건문 큰 수부터 입력받아야하는 이유
- 입출력
- 파이썬
Archives
- Today
- Total
I about me
[Python] 전화번호 목록 본문
한 번호가 다른 번호의 접두어인 경우가 있는지 확인해보자!
def solution(phone_book):
phone_book.sort()
for i in range(len(phone_book) - 1):
if phone_book[i + 1].startswith(phone_book[i]):
return False
return True
str.startswitch(), str.endswitch()
- str.startswitch(): 문자열 중 특정 문자열로 시작되는지를 확인 가능함.
- str.endswitch(): 문자열 중 특정 문자열로 종료되는지를 확인 가능함.
다음의 결과값은 True나 False 형태의 불리언 자료형으로 출력됨.
str ="No pain, No gain"
str.startswith('No') # True
str.startswith('pain') # False
str.endswith('gain') # True
str.endswith('pain') # False
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Python] 외계인 사전 (0) | 2024.04.15 |
---|---|
[Python] from collections import Counter 사용해서 프로그래머스 중복된 문자 제거, 최빈값 구하기 문제 풀이 (0) | 2024.04.15 |
[Python] 인덱스 바꾸기 (0) | 2024.03.31 |
[Python] L2 - 올바른 괄호 (0) | 2024.03.14 |
[Python] L2 - 최솟값 만들기 (0) | 2024.03.14 |