using System.Collections.Generic; class Solution { public List<int> spiralOrder (List<List<int>> matrix) { // write code here List<int> res = new List<int>(); if (matrix != null && matrix.Count == 0) return res; int upBorder = 0,downBorder = matrix.Count-1, left...