[백준][Python] 11728 배열합치기 투포인터 O(n) import sys input = sys.stdin.readline N, M = map(int, input().split()) arr_a = list(map(int, input().split())) arr_b = list(map(int, input().split())) ai = 0 bi = 0 answer = [] while 1: if arr_a[ai] practivceAlgorithm/백준 2021.09.12