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
- server
- 따배씨
- Algospot
- programmers
- udemy
- BASIC
- BFS
- JavaScript
- Math
- String
- dfs
- 인프런
- 따라하면서 배우는 C언어
- Algorithm
- 따라하며 배우는 C언어
- C언어
- C
- greedy
- Cleancode
- php
- web
- 종만북
- Python
- 생활코딩
- BOJ
- 백준
- sorting
- 정수론
- DP
- graph
Archives
- Today
- Total
몽상실현개발주의
[프로그래머스] level1 / 숫자 문자열과 영단어 / Python 파이썬 본문
[프로그래머스] level1 / 숫자 문자열과 영단어 / Python 파이썬
https://programmers.co.kr/learn/courses/30/lessons/81301
풀이
영어 문자를 숫자와 매칭시켜 변환하는 문제이다.
num_dic = {'zero': '0', 'one': '1', 'two': '2', 'three': '3', 'four':'4', 'five':'5', 'six':'6', 'seven':'7', 'eight':'8', 'nine':'9'}
def solution(s):
answer = ''
L = len(s)
for i in range(L):
if s[i].isdecimal():
answer += s[i]
continue
tmp = ''
for j in range(i, L):
tmp += s[j]
if tmp in num_dic:
answer += num_dic[tmp]
break
return int(answer)
더 좋은 풀이
dictionary 와 replace 를 활용한 것이 재미있다.
num_dic = {"zero":"0", "one":"1", "two":"2", "three":"3", "four":"4", "five":"5", "six":"6", "seven":"7", "eight":"8", "nine":"9"}
def solution(s):
answer = s
for key, value in num_dic.items():
answer = answer.replace(key, value)
return int(answer)
'Algorithm PS > 프로그래머스' 카테고리의 다른 글
[프로그래머스] level1 / 없는 숫자 더하기 / Python 파이썬 (0) | 2021.11.16 |
---|---|
[프로그래머스] level1 / 약수의 개수와 덧셈 / Python 파이썬 (0) | 2021.11.16 |
[프로그래머스] level2 / 거리두기 확인하기 / Python 파이썬 (0) | 2021.08.30 |
[프로그래머스] level2 / 프렌즈 4블록 / Python 파이썬 (0) | 2021.06.04 |
[프로그래머스] 후보키 / Python (0) | 2021.05.03 |
Comments