class Solution {
public String[] solution(String my_string) {
String[] temp = my_string.trim().split(" ");
int n = temp.length;
for(String s : temp){
if(s.equals("")) n--;
}
String[] result = new String[n];
int idx = 0;
for(String s : temp){
if(!s.equals("")) result[idx++] = s;
}
return result;
}
}
class Solution {
public String[] solution(String my_string) {
return my_string.trim().split("[ ]+");
}
}
정규식을 이용한 다른 분의 풀이
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 더 크게 합치기 (0) | 2023.05.13 |
---|---|
[프로그래머스/자바] 배열 비교하기 (0) | 2023.05.13 |
[프로그래머스/자바] 배열의 원소만큼 추가하기 (0) | 2023.05.12 |
[프로그래머스/자바] 튜플 (0) | 2023.05.12 |
[프로그래머스/자바] 타겟 넘버 (0) | 2023.05.11 |