codeup #코드업 #1445 #알고리즘 #문제풀이
CODEUP - 1445 : 정렬된 두 배열 합치기 (python)
CODEUP - 1445 : 정렬된 두 배열 합치기 (python)
2020.09.271 2 3 4 5 6 7 8 a, b = input().split() a_list = list(map(int, input().split())) b_list = list(map(int, input().split())) c_list = a_list + b_list c_list.sort() for value in c_list: print(value, end=" ") cs