1873. 상호의 배틀필드
·
swea
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5LyE7KD2ADFAXc SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) for tc in range(1,T+1): H,W = map(int,input().split()) m = [list(input()) for _ in range(H)] N = int(input()) command = input() where_i, where_j = 0,0 dir = '' # 현재 전차가 있는 위치 찾기 for i in range(H): for j in r..