摘要: 1.螺旋矩阵https://leetcode-cn.com/problems/spiral-matrix/ 看到这题我第一时间想到的也是用辅助矩阵visited,时间复杂度和空间复杂度都是O(mn) 1 class Solution: 2 def spiralOrder(self, matrix: 阅读全文
posted @ 2021-01-18 23:35 zmbreathing 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1.字符串相乘https://leetcode-cn.com/problems/multiply-strings/ 学到了for i in range(a, b, c)的用法,其中c为步长 复习了python 字符串的各种操作 对这题的要求和答案不是很理解,要求不能直接将输入转换为整数来处理,但是答 阅读全文
posted @ 2021-01-18 01:09 zmbreathing 阅读(90) 评论(0) 推荐(0) 编辑