(Python) swea 1961: 숫자형 배열 회전
https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=2&contestProbId=AV5Pq-OKAVYDFAUq&categoryId=AV5Pq-OKAVYDFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG= SW Expert Academy SW 프로그래밍 능력을 강화하는 데 도움이 되는 다양한 학습 콘텐츠를 확인하세요! swexpertacademy.com 간단한 구현 문제 출력은 조금 어려울 수 있습니다. 본인은 이중 for문을 이용하여 출력을 했습니다. t = int(input()) for tc in range(1, t+1): n = int(input()) arr = () for i in range(n): lst = list(map(int,input().split())) arr.append(lst) # 90도 answer90 … Read more