[SWEA][Python] 4843 특별한 정렬 1. 투포인터 2. 덱 3. 힙 import sys sys.stdin = open('input.txt') def special_sort(length, arr): arr.sort() max_idx = length-1 min_idx = 0 special_arr = [] # 정렬한 배열의 양끝에서부터 하나씩 특별한 배열로 삽입합니다. # 양끝이 만나면 종료합니다. while min_idx practivceAlgorithm/swexpertacademy 2021.08.12