[프로그래머스] 암호 해독

정선모·2023년 6월 12일
0

프로그래머스

목록 보기
91/91

코드를 인덱스 증가시키는 값으로 잡고 스트링빌더에 한자씩 입력하여 결과값 문자열로 리턴하였습니다.

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();
    }
}
profile
개발자가 되어가는 비전공자

0개의 댓글