프로그래머스(Level 0) - 📟 암호 해독

Gammi·2023년 3월 25일
0

프로그래머스

목록 보기
52/69

✔ 문제






✔ 풀이


class Solution {
  public String solution(String cipher, int code) {
    String answer = "";
    String[] cArr = cipher.split("");
    
    for(int i = 0; i <= cArr.length / code; i++) {
      answer += cArr[code * i - 1];
    }
    
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글