코딩테스트연습/프로그래머스

[프로그래머스 - JAVA] 2021 카카오 채용연계형 인턴십숫자 문자열과 영단어

:)jun 2021. 10. 24. 14:40

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

 

코딩테스트 연습 - 숫자 문자열과 영단어

네오와 프로도가 숫자놀이를 하고 있습니다. 네오가 프로도에게 숫자를 건넬 때 일부 자릿수를 영단어로 바꾼 카드를 건네주면 프로도는 원래 숫자를 찾는 게임입니다. 다음은 숫자의 일부 자

programmers.co.kr

class Solution {
    public int solution(String s) {
        
		    s=s.replaceAll("zero","0");
	        s=s.replaceAll("one","1");
	        s=s.replaceAll("two","2");
	        s=s.replaceAll("three","3");
	        s=s.replaceAll("four","4");
	        s=s.replaceAll("five","5");
	        s=s.replaceAll("six","6");
	        s=s.replaceAll("seven","7");
	        s=s.replaceAll("eight","8");
	        s=s.replaceAll("nine","9");
        
          int answer = Integer.parseInt(s);
         return answer;
	                  
	                    
      
     
    }
}