암호 해독 - 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

  위와 같이 풀 수 있다는 사실을 잊었네요. 조심해야겠습니다.

 


 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

'공부 > 📝 프로그래머스' 카테고리의 다른 글

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