가오리의 코딩일기

[11728] 배열 합치기 본문

Python/백준

[11728] 배열 합치기

류경혜 2022. 8. 4. 03:00

import sys
a, b = map(int, sys.stdin.readline().split())
aList = list(map(int, sys.stdin.readline().split()))
bList = list(map(int, sys.stdin.readline().split()))
resultList = sorted(aList+bList)
print(*resultList)

 

'Python > 백준' 카테고리의 다른 글

[11047] 동전0  (0) 2022.08.05
[2110] 공유기 설치  (0) 2022.08.04
[1654] 랜선 자르기  (0) 2022.08.01
[2004] 조합 0의 개수  (0) 2022.08.01
[1929] 소수 구하기  (0) 2022.07.21