File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99#### 二维数组题目
1010
11- ###### 0498. 对角线遍历、0048. 旋转图像、0118. 杨辉三角、0119. 杨辉三角 II、 0073. 矩阵置零、0054. 螺旋矩阵、0059. 螺旋矩阵 II、0289. 生命游戏
11+ ###### 0498. 对角线遍历、0048. 旋转图像、0073. 矩阵置零、0054. 螺旋矩阵、0059. 螺旋矩阵 II、0289. 生命游戏
1212
1313### [ 排序算法题目] ( ../../Contents/01.Array/02.Array-Sort/11.Array-Sort-List.md )
1414
Original file line number Diff line number Diff line change 2020| :------ | :------ | :------ | :------ | :------ |
2121| 0498 | [ 对角线遍历] ( https://leetcode.cn/problems/diagonal-traverse/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0498.%20%E5%AF%B9%E8%A7%92%E7%BA%BF%E9%81%8D%E5%8E%86.md ) | 数组、矩阵、模拟 | 中等 |
2222| 0048 | [ 旋转图像] ( https://leetcode.cn/problems/rotate-image/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0048.%20%E6%97%8B%E8%BD%AC%E5%9B%BE%E5%83%8F.md ) | 数组 | 中等 |
23- | 0118 | [ 杨辉三角] ( https://leetcode.cn/problems/pascals-triangle/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0118.%20%E6%9D%A8%E8%BE%89%E4%B8%89%E8%A7%92.md ) | 数组 | 简单 |
24- | 0119 | [ 杨辉三角 II] ( https://leetcode.cn/problems/pascals-triangle-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0119.%20%E6%9D%A8%E8%BE%89%E4%B8%89%E8%A7%92%20II.md ) | 数组 | 简单 |
2523| 0073 | [ 矩阵置零] ( https://leetcode.cn/problems/set-matrix-zeroes/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0073.%20%E7%9F%A9%E9%98%B5%E7%BD%AE%E9%9B%B6.md ) | 数组 | 中等 |
2624| 0054 | [ 螺旋矩阵] ( https://leetcode.cn/problems/spiral-matrix/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0054.%20%E8%9E%BA%E6%97%8B%E7%9F%A9%E9%98%B5.md ) | 数组 | 中等 |
2725| 0059 | [ 螺旋矩阵 II] ( https://leetcode.cn/problems/spiral-matrix-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0059.%20%E8%9E%BA%E6%97%8B%E7%9F%A9%E9%98%B5%20II.md ) | 数组、矩阵、模拟 | 中等 |
Original file line number Diff line number Diff line change 1+ ## 1. 数据结构和算法分类
2+
3+ ## 2. 时间复杂度与数据规模
Original file line number Diff line number Diff line change 1616| :------ | :------ | :------ | :------ | :------ |
1717| 0498 | [ 对角线遍历] ( https://leetcode.cn/problems/diagonal-traverse/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0498.%20%E5%AF%B9%E8%A7%92%E7%BA%BF%E9%81%8D%E5%8E%86.md ) | 数组、矩阵、模拟 | 中等 |
1818| 0048 | [ 旋转图像] ( https://leetcode.cn/problems/rotate-image/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0048.%20%E6%97%8B%E8%BD%AC%E5%9B%BE%E5%83%8F.md ) | 数组 | 中等 |
19- | 0118 | [ 杨辉三角] ( https://leetcode.cn/problems/pascals-triangle/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0118.%20%E6%9D%A8%E8%BE%89%E4%B8%89%E8%A7%92.md ) | 数组 | 简单 |
20- | 0119 | [ 杨辉三角 II] ( https://leetcode.cn/problems/pascals-triangle-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0119.%20%E6%9D%A8%E8%BE%89%E4%B8%89%E8%A7%92%20II.md ) | 数组 | 简单 |
2119| 0073 | [ 矩阵置零] ( https://leetcode.cn/problems/set-matrix-zeroes/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0073.%20%E7%9F%A9%E9%98%B5%E7%BD%AE%E9%9B%B6.md ) | 数组 | 中等 |
2220| 0054 | [ 螺旋矩阵] ( https://leetcode.cn/problems/spiral-matrix/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0054.%20%E8%9E%BA%E6%97%8B%E7%9F%A9%E9%98%B5.md ) | 数组 | 中等 |
2321| 0059 | [ 螺旋矩阵 II] ( https://leetcode.cn/problems/spiral-matrix-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0059.%20%E8%9E%BA%E6%97%8B%E7%9F%A9%E9%98%B5%20II.md ) | 数组、矩阵、模拟 | 中等 |
You can’t perform that action at this time.
0 commit comments