https://leetcode.com/problems/spiral-matrix/ 1. 2022.03.31 시도 소요시간: 11분 class Solution { private String[] d = new String[]{"RIGHT", "DOWN", "LEFT", "UP"}; public List spiralOrder(int[][] matrix) { int rowSize = matrix.length; int colSize = matrix[0].length; int p = 0; int q = -1; List ret = new ArrayList(); int directionIndex = 0; while ( rowSize !=0 && colSize != 0) { String direction = d[direc..