반응형
function hanoi(num, from, to ,other){
if(num == 0) return;
hanoi(num-1, from, other, to);
console.log(`${num}을 ${from}에서 ${to}로 보낸다`);
hanoi(num-1, other, to, from);
}
hanoi(5,'A','B','C');
반응형
'개발 아카이브 > 코드 저장소' 카테고리의 다른 글
정규표현식 문법 공부하기 (0) | 2021.09.30 |
---|---|
[Python]NHN 채용 공고 크롤링, 검색, 추출 코드 (0) | 2021.08.10 |
[자바스크립트] 날짜 형식 yyyy-MM-dd로 변환 (0) | 2020.10.27 |
[자바스크립트] 날짜에 일수 더하기 (0) | 2020.10.15 |
[자바스크립트] 변수에 빈값인지 체크하기 (0) | 2020.10.13 |