Skip to content

Commit 9da3264

Browse files
authored
Update readme.md
1 parent fbebdf4 commit 9da3264

File tree

1 file changed

+3
-3
lines changed
  • src/main/java/g3201_3300/s3248_snake_in_matrix

1 file changed

+3
-3
lines changed

src/main/java/g3201_3300/s3248_snake_in_matrix/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Return the position of the final cell where the snake ends up after executing `c
1818

1919
**Explanation:**
2020

21-
![image](https://leetcode-in-java.github.io/src/main/java/g3201_3300/s3248_snake_in_matrix/image01.png)
21+
![image](https://leetcode-images.github.io/g3201_3300/s3248_snake_in_matrix/image01.png)
2222

2323
**Example 2:**
2424

@@ -28,11 +28,11 @@ Return the position of the final cell where the snake ends up after executing `c
2828

2929
**Explanation:**
3030

31-
![image](https://leetcode-in-java.github.io/src/main/java/g3201_3300/s3248_snake_in_matrix/image02.png)
31+
![image](https://leetcode-images.github.io/g3201_3300/s3248_snake_in_matrix/image02.png)
3232

3333
**Constraints:**
3434

3535
* `2 <= n <= 10`
3636
* `1 <= commands.length <= 100`
3737
* `commands` consists only of `"UP"`, `"RIGHT"`, `"DOWN"`, and `"LEFT"`.
38-
* The input is generated such the snake will not move outside of the boundaries.
38+
* The input is generated such the snake will not move outside of the boundaries.

0 commit comments

Comments
 (0)