풀이 : dx, dy, dir 이용 switch문 또는 if문으로 문자에 따른(방향) dir를 바꿔줌 Code public class Solution1873 { static int T, H, W, x, y, dir; static char[][] map; static int[][] v = {{0,0}, {0,1}, {0,-1}, {1,0}, {-1,0}}; // 동서남북 public static void main(String[] args) { Scanner sc = new Scanner(System.in); T = sc.nextInt(); for(int tc=1; tc= H || ny >= W) { break; // 포탄이 맵 밖으로 나갔을 때 } if (board[nx][ny] == '#') { brea..