Skip to content

Commit c4b641d

Browse files
authored
Update README.md
1 parent 64af27c commit c4b641d

File tree

1 file changed

+3
-3
lines changed
  • Dynamic Programming/1162-as-far-from-land-as-possible

1 file changed

+3
-3
lines changed

Dynamic Programming/1162-as-far-from-land-as-possible/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The distance used in this problem is the Manhattan distance: the distance betwe
66

77
Example 1:
88

9-
[https://assets.leetcode.com/uploads/2019/05/03/1336_ex1.JPG]
9+
![https://assets.leetcode.com/uploads/2019/05/03/1336_ex1.JPG](https://assets.leetcode.com/uploads/2019/05/03/1336_ex1.JPG)
1010

1111

1212
Input: grid = [[1,0,1],[0,0,0],[1,0,1]]
@@ -16,7 +16,7 @@ Explanation: The cell (1, 1) is as far as possible from all the land with distan
1616

1717
Example 2:
1818

19-
[https://assets.leetcode.com/uploads/2019/05/03/1336_ex2.JPG]
19+
![https://assets.leetcode.com/uploads/2019/05/03/1336_ex2.JPG](https://assets.leetcode.com/uploads/2019/05/03/1336_ex2.JPG)
2020

2121

2222
Input: grid = [[1,0,0],[0,0,0],[0,0,0]]
@@ -31,4 +31,4 @@ Constraints:
3131
* n == grid.length
3232
* n == grid[i].length
3333
* 1 <= n <= 100
34-
* grid[i][j] is 0 or 1
34+
* grid[i][j] is 0 or 1

0 commit comments

Comments
 (0)