728x90
프로그래머스 1단계
숫자 문자열과 영단어
https://programmers.co.kr/learn/challenges
문제 설명
풀이
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
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 직사각형 별찍기 (0) | 2022.04.24 |
---|---|
[프로그래머스] 자연수 뒤집어 배열로 만들기 (0) | 2022.04.24 |
[프로그래머스] 행렬의 덧셈 (0) | 2022.04.24 |
[프로그래머스] 완주하지 못한 선수 (0) | 2022.04.24 |
[프로그래머스] 이상한 문자 만들기 (0) | 2022.04.24 |
댓글