59. Spiral Matrix II——python 實現——array

  class Solution(object): def kthSmallest(self, n): b = [] for i in range(n): a = [] for j in range(n): a.append(0) b.append(a)
相關文章
相關標籤/搜索