728x90
class Solution {
public int solution(String s) {
String[] word = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
for (int i = 0; i < 10; i++) {
s = s.replace(word[i], String.valueOf(i));
}
return Integer.parseInt(s);
}
}
그래 나 혼자푼거 아니다
근데 이렇게 간단한거였다니
728x90
'with my rubber duck > codingTest' 카테고리의 다른 글
[백준 1978]소수찾기. 소수 몇번짼데 아직도 헤매는지 모르겠네 (0) | 2022.07.13 |
---|---|
[백준 1316] 그룹단어 체크 + 복습 !! (0) | 2022.07.12 |
[프로그래머스] 없는숫자 더하기 (0) | 2022.07.06 |
[프로그래머스] 최솟값 만들기 풀어보기 (처음으로 2단계) (0) | 2022.06.24 |
[프로그래머스] 소수만들기 풀어보기 (0) | 2022.06.22 |
댓글