일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Re
- 추석맞이 코딩챌린지
- 카카오
- 정규식
- 다익스트라
- lambda
- 수학
- 자바
- 재귀함수
- KAKAO BLIND RECRUITMENT
- 위클리 챌린지
- 정렬
- 프로그래머스
- 이분탐색
- Combinations
- python
- 백준
- 동적 계획법
- Zip
- java
- backjoon
- BFS
- Set
- dfs
- 파이썬
- 그리디
- programmers
- divmod
- heapq
- DateTime
Archives
- Today
- Total
상상쓰
[프로그래머스] 숫자 문자열과 영단어 본문
https://programmers.co.kr/learn/courses/30/lessons/81301
2021 카카오 채용연계형 인턴십 1단계 문제
def solution(s):
answer = 0
number = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
for i in range(10):
s = s.replace(number[i], str(i))
answer = int(s)
return answer
'Coding Test' 카테고리의 다른 글
[프로그래머스] 거리두기 확인하기 (0) | 2021.07.11 |
---|---|
[프로그래머스] 호텔 방 배정 (0) | 2021.07.09 |
[백준] 단어 뒤집기 (0) | 2021.07.09 |
[백준] Passport Control (0) | 2021.07.08 |
[프로그래머스] 단속카메라 (0) | 2021.07.07 |
Comments