본문 바로가기
알고리즘/프로그래머스 1단계

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

by lanuarius19 2022. 4. 24.
728x90

 

프로그래머스 1단계
숫자 문자열과 영단어

https://programmers.co.kr/learn/challenges

 

문제 설명

 

 

숫자 문자열과 영단어1
숫자 문자열과 영단어2
숫자 문자열과 영단어3

풀이

 

class Solution {
    public int solution(String s) {
        String[] numbers = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
        
        for (int i = 0; i < numbers.length; i++) {
            s = s.replaceAll(numbers[i], Integer.toString(i));
        }
        
        return Integer.parseInt(s);
    }
}
 
728x90

댓글