코딩 테스트 준비하면서 핵심 요약 파이썬으로 준비합니다. 많은 부분을 나동빈님 저자, 이것이 취업을 위한 코딩 테스트다 with Python 를 참고하였습니다. 외워야할 것 들 import sys input = lambda: sys.stdin.readline().rstrip() sys.setrecursionlimit( LIMIT ) from collections import deque from itertools import combinations, permutations import math math.ceil() math.floor( NUMBER + 0.5 ) # 반올림 import heapq q = [] heapq.heappush(q, NUMBER) n = heapq.heappop(q) arr = AR..