Skip to content

Commit dbf5e49

Browse files
author
lucifer
committed
fix: typo
1 parent 41db4e6 commit dbf5e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: problems/1260.shift-2d-grid.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Solution:
8080
我们仔细观察矩阵会发现,其实这样的矩阵迁移是有规律的。 如图:
8181
![image](https://user-images.githubusercontent.com/12479470/72203575-4f6e4c00-34a8-11ea-8765-03fc856d4ea6.png)
8282

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

8585
LeetCode 真的是喜欢换汤不换药呀 😂
8686

0 commit comments

Comments
 (0)