- 난이도: Lv1
프로그래머스 링크: https://school.programmers.co.kr/learn/courses/30/lessons/81301
풀이 링크(GitHub): hayannn/CodingTest_Java/프로그래머스/1/숫자 문자열과 영단어
풀이 시간 : 11분
import java.util.*;
class Solution {
public int solution(String s) {
String[] arr = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
for (int i = 0; i < arr.length; i++) {
s = s.replace(arr[i], Integer.toString(i));
}
return Integer.parseInt(s);
}
}