leetcode_medium_array
problem
54. Spiral Matrix
solution #1: traverse from left to right, and then from down to up;
code
solution #2:
solution #3:使用switch语句;
code:
参考
1. leetcode_54. Spiral Matrix;
完