[프로그래머스/Java] 숫자 문자열과 영단어

daily_study_78·2021년 11월 9일
0

알고리즘

목록 보기
6/11
post-thumbnail

문제 링크

https://programmers.co.kr/learn/courses/30/lessons/81301


문제


해결 과정

  • zero ~ nine까지 하나씩 돌아가면서 문자를 replaceAll을 이용해 모두 바꿔줌. replace의 경우 맨 처음 하나만 바꾸기 때문에, 모두 바꿔줘야함

최종 코드

class Solution {
    public int solution(String s) {
        String[] number = {"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.replaceAll(word[i], number[i]);
        }
        
        return Integer.parseInt(s);
    }
}

0개의 댓글

관련 채용 정보