코드를 인덱스 증가시키는 값으로 잡고 스트링빌더에 한자씩 입력하여 결과값 문자열로 리턴하였습니다.
class Solution {
public String solution(String cipher, int code) {
int length = cipher.length();
int index = code-1;
StringBuilder answer = new StringBuilder();
while(length>index) {
answer.append(cipher.charAt(index));
index += code;
}
return answer.toString();
}
}