암호 해독 - Python
2023. 9. 29. 19:35ㆍ공부/📝 프로그래머스
def solution(cipher, code):
answer = ''
for i in range(code - 1, len(cipher), code):
answer += cipher[i]
return answer
# Test Cases
print(solution("dfjardstddetckdaccccdegk", 4))
print(solution("pfqallllabwaoclk", 2))
이렇게 풀었습니다.
def solution(cipher, code):
answer = cipher[code-1::code]
return answer
위와 같이 풀 수 있다는 사실을 잊었네요. 조심해야겠습니다.
'공부 > 📝 프로그래머스' 카테고리의 다른 글
369게임 - Python (0) | 2023.09.29 |
---|---|
인덱스 바꾸기 - Python (0) | 2023.09.29 |
n의 배수 고르기 - Python (0) | 2023.09.29 |
대문자와 소문자 - Python (0) | 2023.09.29 |
세균 증식 - Python (0) | 2023.09.29 |