From dbf5e49d239cc2cbed1b3e1f7aeaf3596a286d46 Mon Sep 17 00:00:00 2001 From: lucifer Date: Sat, 11 Jan 2020 20:09:19 +0800 Subject: [PATCH] fix: typo --- problems/1260.shift-2d-grid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/1260.shift-2d-grid.md b/problems/1260.shift-2d-grid.md index 9d0881e6e..1729456b2 100644 --- a/problems/1260.shift-2d-grid.md +++ b/problems/1260.shift-2d-grid.md @@ -80,7 +80,7 @@ class Solution: 我们仔细观察矩阵会发现,其实这样的矩阵迁移是有规律的。 如图: ![image](https://user-images.githubusercontent.com/12479470/72203575-4f6e4c00-34a8-11ea-8765-03fc856d4ea6.png) -因此这个问题就转化为我们一直的一维矩阵转移问题,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/)专门讨论这个,最终我们使用的是三次旋转法,相关数学证明也有写,很详细,这里不再赘述。 LeetCode 真的是喜欢换汤不换药呀 😂