Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Git
- 캐치카페
- 프로그래머스
- Docker
- 데이콘
- github
- 자연어처리
- 파이썬
- AI 경진대회
- 편스토랑
- 코로나19
- ChatGPT
- 금융문자분석경진대회
- PYTHON
- 백준
- Real or Not? NLP with Disaster Tweets
- programmers
- 프로그래머스 파이썬
- dacon
- leetcode
- gs25
- hackerrank
- ubuntu
- SW Expert Academy
- 우분투
- 더현대서울 맛집
- 편스토랑 우승상품
- Kaggle
- Baekjoon
- 맥북
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 2021 카카오 채용연계형 인턴십 - 숫자 문자열과 영단어 (Python) 본문
Programming/코딩 1일 1문제
[Programmers] 2021 카카오 채용연계형 인턴십 - 숫자 문자열과 영단어 (Python)
솜씨좋은장씨 2021. 7. 28. 20:29728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 숫자 문자열과 영단어 입니다.
Solution
def solution(string):
answer = ""
word_to_num = {
"zero": "0", "one": "1", "two": "2", "three": "3", "four": "4",
"five": "5", "six": "6", "seven": "7", "eight": "8", "nine": "9"
}
temp = ""
for char in string:
if char.isdigit():
answer += char
else:
temp += char
if temp in word_to_num.keys():
answer += word_to_num[temp]
temp = ""
answer = int(answer)
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 5597번 : 과제 안 내신 분..? (Python) (0) | 2021.07.31 |
---|---|
[BaekJoon] 10818번 : 최소, 최대 (Python) (0) | 2021.07.30 |
[BaekJoon] 2754번 : 학점계산 (Python) (0) | 2021.07.27 |
[BaekJoon] 11365번 : !밀비 급일 (Python) (0) | 2021.07.26 |
[BaekJoon] 15813번 : 너의 이름은 몇 점이니? (Python) (0) | 2021.07.25 |
Comments