2021 카카오 채용연계형 인턴십
https://programmers.co.kr/learn/courses/30/lessons/81301
hell
and hello
)가 없으므로import java.util.HashMap;
class Solution {
private static HashMap<String, String> map = new HashMap<>();
public int solution(String s) {
// map 구성
map.put("zero", "0");
map.put("one", "1");
map.put("two", "2");
map.put("three", "3");
map.put("four", "4");
map.put("five", "5");
map.put("six", "6");
map.put("seven", "7");
map.put("eight", "8");
map.put("nine", "9");
for(String key : map.keySet()){
s = s.replaceAll(key, map.get(key));
}
int answer = Integer.parseInt(s);
return answer;
}
}
class Solution {
public int solution(String s) {
String[] strArr = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
for(int i = 0; i < strArr.length; i++) {
s = s.replaceAll(strArr[i], Integer.toString(i));
}
return Integer.parseInt(s);
}
}
다른사람들 풀이도 찾아보니 배열을 문자열 배열 딱 하나만 포함하고, 그 index를 활용하는 법도 있었다!