摘要: 1. 矩阵置零 给定一个 m x n 的矩阵,如果一个元素为 0 ,则将其所在行和列的所有元素都设为 0 。 class Solution: def setZeroes(self, matrix: List[List[int]]) -> None: rows = len(matrix) cols = 阅读全文
posted @ 2024-09-20 06:06 WindMay 阅读(1) 评论(0) 推荐(0) 编辑