[LeetCode- Ch3. 배열] 7. 나선형 매트릭스 #
https://leetcode.com/problems/spiral-matrix/ Spiral Matrix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 나선형 매트릭스 :m x n의 요소로 이루어진 매트릭스로, 나선형 순으로 모든 요소를 출력 [동글뱅이] -> 상하좌우 위치 좌표값 변경을 이용해 문제해결 [0,0]:1, [0,1]:2, [0,2]:3, [0,3]:4 [1,0]:5, [1,1]:6, [1,2]:7, [1,3]:8 [2,0]:9, [2,1]:10..