From be15d243a3b93d7efa731d0589a54a63cbff61ae Mon Sep 17 00:00:00 2001 From: lucifer Date: Wed, 29 Jan 2020 20:06:07 +0800 Subject: [PATCH] fix: typo --- problems/874.walking-robot-simulation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/874.walking-robot-simulation.md b/problems/874.walking-robot-simulation.md index 2206f475e..f2ed8b1d7 100644 --- a/problems/874.walking-robot-simulation.md +++ b/problems/874.walking-robot-simulation.md @@ -45,7 +45,7 @@ https://leetcode-cn.com/problems/walking-robot-simulation/submissions/ ## 思路 -这道题之所以是简单难度,是因为其没有什么技巧。你只需要看懂地图,然后把题目描述转化为代码即可。 +这道题之所以是简单难度,是因为其没有什么技巧。你只需要看懂题目描述,然后把题目描述转化为代码即可。 唯一需要注意的是查找障碍物的时候如果你采用的是`线形查找`会很慢,很可能会超时。