We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41db4e6 commit dbf5e49Copy full SHA for dbf5e49
problems/1260.shift-2d-grid.md
@@ -80,7 +80,7 @@ class Solution:
80
我们仔细观察矩阵会发现,其实这样的矩阵迁移是有规律的。 如图:
81

82
83
-因此这个问题就转化为我们一直的一维矩阵转移问题,LeetCode 也有原题[189. 旋转数组](https://leetcode-cn.com/problems/rotate-array/),同时我也写了一篇文章[文科生都能看懂的循环移位算法](https://lucifer.ren/blog/2019/12/11/rotate-list/)专门讨论这个,最终我们使用的是三次旋转法,相关数据证明也有写,很详细,这里赘述。
+因此这个问题就转化为我们一直的一维矩阵转移问题,LeetCode 也有原题[189. 旋转数组](https://leetcode-cn.com/problems/rotate-array/),同时我也写了一篇文章[文科生都能看懂的循环移位算法](https://lucifer.ren/blog/2019/12/11/rotate-list/)专门讨论这个,最终我们使用的是三次旋转法,相关数学证明也有写,很详细,这里不再赘述。
84
85
LeetCode 真的是喜欢换汤不换药呀 😂
86
0 commit comments