티스토리 뷰
# 11728 배열 합치기
import sys
N, M = map(int, sys.stdin.readline().split())
A = list(map(int, sys.stdin.readline().split()))
B = list(map(int, sys.stdin.readline().split()))
appended = A + B
appended.sort()
print(*appended, sep= ' ')
이렇게 해서 풀긴 했는데 A, B는 이미 sort가 되어 있는 array라서 더 나은 방법이 있을 것 같았다.
A, B 하나씩 가져와서 크기 비교하고 append해주면 될듯??
'Algorithm > noj.am' 카테고리의 다른 글
[Python] 백준 11047번 - 동전 0 (0) | 2021.01.24 |
---|---|
[Python] 백준 1780번 - 종이의 갯수 (0) | 2021.01.24 |
[Python] 백준 10816번 - 숫자카드 2 / try-except로 딕셔너리 초기화하기 (0) | 2021.01.21 |
[Python] 백준 10825번 - 국영수 / 여러 조건 한번에 sort하기 (0) | 2021.01.21 |
[Python] 백준 2805번 - 나무 자르기 (0) | 2021.01.21 |