11728 - 배열 합치기

LeeKyoungChang·2022년 3월 15일
0

Algorithm

목록 보기
67/203
post-thumbnail

📚 11728 - 배열 합치기

배열 합치기

 

이해

sort() 메서드를 이용하면 된다.

 

소스

import sys

read = sys.stdin.readline

n, m = map(int, read().split())

a = list(map(int, read().split()))
b = list(map(int, read().split()))

result = a + b
result.sort()

print(' '.join(map(str, result)))

 

채점 결과

스크린샷 2022-03-15 오후 11 53 27

 

profile
"야, (오류 만났어?) 너두 (해결) 할 수 있어"

0개의 댓글