지나가던 개발자

[Python] 백준 11728번(배열 합치기) 문제 풀이 본문

PS/Python

[Python] 백준 11728번(배열 합치기) 문제 풀이

KwonYongHyeon 2022. 12. 4. 19:42

 

input()
[print(x, end=" ") for x in sorted(list(map(int, input().split()))+list(map(int, input().split())))]
Comments