[Algorithm] 백준 1463번 1로 만들기(파이썬)
1로 만들기
[Algorithm] factorial 0갯수 세는 법
https://tmdrl5779.tistory.com/95
[Algorithm] Stack 알고리즘
스택 알고리즘
문제 스택 (stack)은 기본적인 자료구조 중 하나로, 컴퓨터 프로그램을 작성할 때 자주 이용되는 개념이다. 스택은 자료를 넣는 (push) 입구와 자료를 뽑는 (pop) 입구가 같아 제일 나중에 들어간 자료가 제일 먼저 나오는 (LIFO, Last in First out) 특성을 가지고 있다.
