Skip to content

Commit c3b6afe

Browse files
committed
fix: update image path
1 parent fd16cac commit c3b6afe

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

lcci/08.02.Robot in a Grid/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- 这里写题目描述 -->
55
<p>设想有个机器人坐在一个网格的左上角,网格 r 行 c 列。机器人只能向下或向右移动,但不能走到一些被禁止的网格(有障碍物)。设计一种算法,寻找机器人从左上角移动到右下角的路径。</p>
66

7-
<p><img src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/22/robot_maze.png" style="height: 183px; width: 400px;"></p>
7+
![](./images/robot_maze.png)
88

99
<p>网格中的障碍物和空位置分别用 <code>1</code> 和 <code>0</code> 来表示。</p>
1010

lcci/08.02.Robot in a Grid/README_EN.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,14 @@
44
<p>Imagine a robot sitting on the upper left corner of grid with r rows and c columns. The robot can only move in two directions, right and down, but certain cells are &quot;off limits&quot; such that the robot cannot step on them. Design an algorithm to find a path for the robot from the top left to the bottom right.</p>
55

66

7-
8-
<p><img src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/22/robot_maze.png" style="height: 183px; width: 400px;" /></p>
9-
10-
7+
![](./images/robot_maze.png)
118

129
<p>&quot;off limits&quot; and empty grid are represented by&nbsp;<code>1</code> and&nbsp;<code>0</code>&nbsp;respectively.</p>
1310

1411

15-
1612
<p>Return a valid path, consisting of row number and column number of grids in the path.</p>
1713

1814

19-
2015
<p><strong>Example&nbsp;1:</strong></p>
2116

2217

9.46 KB
Loading

0 commit comments

Comments
 (0)