[프로그래머스] 숫자 문자열과 영단어 풀어보기
class Solution { public int solution(String s) { String[] word = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; for (int i = 0; i < 10; i++) { s = s.replace(word[i], String.valueOf(i)); } return Integer.parseInt(s); } } 그래 나 혼자푼거 아니다 근데 이렇게 간단한거였다니
2022. 7. 11.