본문 바로가기
with my rubber duck/codingTest

[프로그래머스] 숫자 문자열과 영단어 풀어보기

by stilinski 2022. 7. 11.
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

댓글