[Python] BOJ 11728번. 배열 합치기 작성일 2020-11-30 | In Algorithm | 11728번. 배열 합치기 문제 링크 https://www.acmicpc.net/problem/11728 풀이 코드 123456789101112# 11728번. 배열 합치기 import sys input = sys.stdin.readline n, m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.extend(b) # 그냥 한 리스트로 만들어주고 a.sort() # 정렬 print(*a) # 주어진 형식대로 출력 비고