class Solution {
public String solution(String cipher, int code) {
StringBuilder sb = new StringBuilder();
for(int i=code-1; i<cipher.length(); i+=code) {
sb.append(cipher.charAt(i));
}
return sb.toString();
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 최댓값 만들기 (2) (0) | 2023.05.09 |
---|---|
[프로그래머스/자바] 접미사인지 확인하기 (0) | 2023.05.07 |
[프로그래머스/자바] 이어 붙인 수 (0) | 2023.05.07 |
[프로그래머스/자바] 홀수 vs 짝수 (0) | 2023.05.04 |
[프로그래머스/자바] 접두사인지 확인하기 (0) | 2023.05.04 |