[SWEA][Python] 1959 두 개의 숫자열
·
🚩 Coding Test/SWEA
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PpoFaAS4DFAUq SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [코드]abs 사용해서 M-N 하니 인덱스 초과가 발생해서 if N > M 으로 따로 빼주었다. T = int(input())for tc in range(1,T+1): N, M = map(int,input().split()) A = list(map(int,input().split())) B = list(map(int,input().split())) if N > M: ..