반응형
https://programmers.co.kr/learn/courses/30/lessons/81301
class Solution {
public int solution(String s) {
String[] num = {"0","1","2","3","4","5","6","7","8","9"};
String[] days = {"zero","one","two","three","four","five","six","seven","eight","nine"};
for(int i=0; i<10; i++){
s = s.replaceAll(days[i],num[i]);
}
return Integer.parseInt(s);
}
}
반응형
'코딩테스트 > 프로그래머스 1단계' 카테고리의 다른 글
프로그래머스 1단계 - 정수 내림차순으로 배치하기 (0) | 2021.08.19 |
---|---|
프로그래머스 1단계 - 이상한 문자 만들기 (0) | 2021.08.19 |
프로그래머스 1단계 - 위클리 챌린지 2주차 (0) | 2021.08.12 |
프로그래머스 1단계 - 자릿수 더하기 (0) | 2021.05.05 |
프로그래머스 1단계 - 약수의 합 (0) | 2021.05.05 |