[Python] 코딩테스트 문법 정리
📌 딕셔너리 정렬 sorted(dict.items(), key=lambda x: (-x[1], x[0])) 📌 defaultdict() from collections import defaultdict int_dict = defaultdict(int) 📌 아스키코드 변환 : ord(), chr() ord('a') # 97 chr(97) # 'a' 📌 이진수 변환 bin(42) # '0b101010' 📌 절대값 : abs() abs(-10) # 10 📌 heapq import heapq arr = [3, 2, 1] heapq.heapify(arr) # [1, 2, 3] heapq.heappush(arr, 4) # [1, 2, 3, 4] heapq.heappop(arr) # 1 📌 재귀 깊이 제한 설정 imp..