[알고리즘] 프로그래머스 - 숫자 문자열과 영단어 / 자바

배고픈메꾸리·2021년 7월 17일
0

알고리즘

목록 보기
100/128

class Solution {
    public int solution(String s) {

    String[]  num= {"0","1","2","3","4","5","6","7","8","9"};
    String[] word= {"zero" , "one" , "two" , "three" , "four" , "five" , "six" , "seven" , "eight" , "nine"};
        for (int i = 0 ; i <10 ; i++){
            s = s.replace(word[i] , num[i]);
        }
        return Integer.parseInt(s);
    }
}

profile
FE 개발자가 되자

1개의 댓글

comment-user-thumbnail
2022년 6월 24일

와우 생각치도 못한,,,..엄치 척!
잘 배우고 갑니다

답글 달기