Skip to content

Commit 3bfe003

Browse files
committed
fix: update assets
1 parent 3be2569 commit 3bfe003

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

medium/840. Magic Squares In Grid/description.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Given a `row x col` `grid` of integers, how many `3 x 3` contiguous magic square
77

88
Note: while a magic square can only contain numbers from 1 to 9, grid may contain numbers up to 15.
99

10-
![img.png](img.png)
10+
![img.png](assets/img.png)
1111

1212
**Example 1:**
1313

@@ -16,11 +16,11 @@ Note: while a magic square can only contain numbers from 1 to 9, grid may contai
1616
- Output: 1
1717
- Explanation: The following subgrid is a `3 x 3` magic square:
1818

19-
![img_1.png](img_1.png)
19+
![img_1.png](assets/img_1.png)
2020

2121
while this one is not:
2222

23-
![img_2.png](img_2.png)
23+
![img_2.png](assets/img_2.png)
2424
-
2525
In total, there is only one magic square inside the given grid.
2626

medium/885. Spiral Matrix III/description.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Return an array of coordinates representing the positions of the grid in the ord
1111

1212
Example 1:
1313

14-
![img.png](img.png)
14+
![img.png](assets/img.png)
1515

1616
> **Input:** rows = 1, cols = 4, rStart = 0, cStart = 0
1717
>
1818
> **Output:** [[0,0],[0,1],[0,2],[0,3]]
1919
2020
Example 2:
2121

22-
![img_1.png](img_1.png)
22+
![img_1.png](assets/img_1.png)
2323

2424
> **Input:** rows = 5, cols = 6, rStart = 1, cStart = 4
2525
>

0 commit comments

Comments
 (0)