class Solution {
public String solution(String cipher, int code) {
StringBuilder sb = new StringBuilder();
String[] cipherArray = cipher.split("");
for (int i = 0; i < cipherArray.length; i++) {
if ((i + 1) % code == 0) sb.append(cipherArray[i]);
}
return sb.toString();
}
}
code에 해당하는 번호의 배수에 있는 단어를 선택해서 문자로 만들어 출력하는 문제이다.