import java.util.*;
class Solution {
public String[] solution(String my_str, int n) {
List<String> list = new ArrayList<>();
for (int i = 0; (i < my_str.length() / n); i++) {
list.add(my_str.substring(i * n, n * (i + 1)));
}
if (my_str.length() % n != 0) {
list.add(my_str.substring(my_str.length() / n * n));
}
return list.toArray(new String[list.size()]);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 등수 매기기 (0) | 2023.02.06 |
---|---|
[프로그래머스] 이진수 더하기 (0) | 2023.02.05 |
[프로그래머스] 유한소수 판별하기 (0) | 2023.02.05 |
[프로그래머스] 영어가 싫어요 (0) | 2023.02.05 |
[프로그래머스] 삼각형의 완성조건 (2) (0) | 2023.02.05 |