class Solution {
public int solution(String s) {
String[] words = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
for(int i = 0; i < words.length; i++){
s = s.replace(words[i], Integer.toString(i));
}
return Integer.parseInt(s);
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] [1차] 비밀지도 (0) | 2023.03.14 |
---|---|
[프로그래머스/자바] 완주하지 못한 선수 (0) | 2023.03.13 |
[프로그래머스/자바] 없는 숫자 더하기 (0) | 2023.03.13 |
[프로그래머스/자바] 점의 위치 구하기 (0) | 2023.03.13 |
[프로그래머스/자바] 중복된 숫자 개수 (0) | 2023.03.09 |