Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- array
- HTML
- CSS
- 알고리즘
- 프로그래머스
- scss
- 자료구조
- greedy
- computed
- 자료형
- github
- JavaSceipt
- string
- 변수
- java
- math
- hash table
- 파이썬
- sorting
- dynamic programming
- Python
- SasS
- 컴포넌트
- leetcode
- JavaScript
- JS
- vue.js
- Algorithm
- 백준
- 코딩테스트
Archives
- Today
- Total
Posis
[프로그래머스] 암호 해독 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120892?language=java
문제 설명
군 전략가 머쓱이는 전쟁 중 적군이 다음과 같은 암호 체계를 사용한다는 것을 알아냈습니다.
- 암호화된 문자열 cipher를 주고받습니다.
- 그 문자열에서 code의 배수 번째 글자만 진짜 암호입니다.
문자열 cipher와 정수 code가 매개변수로 주어질 때 해독된 암호 문자열을 return하도록 solution 함수를 완성해주세요.
제한사항
- 1 ≤ cipher의 길이 ≤ 1,000
- 1 ≤ code ≤ cipher의 길이
- cipher는 소문자와 공백으로만 구성되어 있습니다.
- 공백도 하나의 문자로 취급합니다.
입출력 예
cipher | code | result |
"dfjardstddetckdaccccdegk" | 4 | "attack" |
"pfqallllabwaoclk" | 2 | "fallback" |
입출력 예 설명
입출력 예 #1
- "dfjardstddetckdaccccdegk" 의 4번째, 8번째, 12번째, 16번째, 20번째, 24번째 글자를 합친 "attack"을 return합니다.
입출력 예 #2
- "pfqallllabwaoclk" 의 2번째, 4번째, 6번째, 8번째, 10번째, 12번째, 14번째, 16번째 글자를 합친 "fallback"을 return합니다.
나의 풀이
Java
class Solution {
public String solution(String cipher, int code) {
String answer = "";
char[] arr = cipher.toCharArray();
for(int i = code-1; i < arr.length; i += code) {
answer += arr[i];
}
return answer;
}
}
JavaScript
function solution(cipher, code) {
var answer = "";
for (let i = code - 1; i < cipher.length; i += code) {
answer += cipher[i];
}
return answer;
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 세균 증식 (0) | 2022.12.05 |
---|---|
[프로그래머스] 직각삼각형 출력하기 (0) | 2022.12.05 |
[프로그래머스] 문자열 정렬하기 (1) (0) | 2022.12.02 |
[프로그래머스] 개미 군단 (0) | 2022.12.02 |
[프로그래머스] 모음 제거 (0) | 2022.12.02 |