DHistory
[Baekjoon] 11728 - 배열 합치기 본문
문제
풀이
import sys
n, m = map(int, sys.stdin.readline().rstrip().split())
a = list(map(int, sys.stdin.readline().rstrip().split()))[:n]
b = list(map(int, sys.stdin.readline().rstrip().split()))[:m]
def solution(a, b):
return sorted(a + b)
print(*solution(a, b))
채점 결과
'Computer Science > Algorithm' 카테고리의 다른 글
[Baekjoon] Sortt - 11931 수 정렬하기 4 (0) | 2023.09.08 |
---|---|
[Baekjoon] Sort - 8979 올림픽 (0) | 2023.09.08 |
[Baekjoon] Sort - 11004 K 번째 수 (0) | 2023.09.08 |
[Baekjoon] Sort - 10815 숫자 카드 (0) | 2023.09.08 |
[Baekjoon] Sort - 나이순 정렬 (0) | 2023.09.08 |