Programmers/프로그래머스-숫자 문자열과 영단어-python
문제
풀이
replace
와dict
을 활용하면 쉽게 구현할 수 있다.
코드
# https://programmers.co.kr/learn/courses/30/lessons/81301
# programmers, level1: 숫자 문자열과 영단어, python3
# 2021 카카오 채용연계형 인턴쉽
def solution(s):
dict = {
'zero': '0', 'one': '1', 'two': '2', 'three': '3', 'four': '4',
'five': '5', 'six': '6', 'seven': '7', 'eight': '8', 'nine': '9'
}
for k, v in dict.items():
s = s.replace(k, v)
return int(s)
결과
출처 & 깃허브
Author And Source
이 문제에 관하여(Programmers/프로그래머스-숫자 문자열과 영단어-python), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cosmos/Programmers프로그래머스-숫자-문자열과-영단어-python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)