728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12946?language=python3
최종 코드
def hanoi(num, _from, by, to):
global answer
if num == 1:
answer.append([_from, to])
return
hanoi(num-1, _from, to, by)
answer.append([_from, to])
hanoi(num-1, by, _from, to)
def solution(n):
global answer
answer = []
hanoi(n, 1, 2, 3)
return answer
풀이 과정
풀이 시간 34분
728x90
반응형
'코테 노트 > 프로그래머스' 카테고리의 다른 글
Level 3 [1차] 추석 트래픽 <KAKAO 2018 BLIND RECRUITMENT> Python3 (0) | 2021.08.02 |
---|---|
Level 3 [1차] 셔틀버스 <KAKAO 2018 BLIND RECRUITMENT> Python3 (0) | 2021.07.30 |
Level 3 최고의 집합 Python 3 (0) | 2021.07.29 |
Level 3 스티커 모으기(2) Python 3 (0) | 2021.07.27 |
Level 3 멀리 뛰기 Python 3 (0) | 2021.07.27 |