Skip to content

Commit 3a60c16

Browse files
committed
style: change to relative path
1 parent c5d521a commit 3a60c16

File tree

15 files changed

+10
-10
lines changed

15 files changed

+10
-10
lines changed

solution/1500-1599/1579.Remove Max Number of Edges to Keep Graph Fully Traversable/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<p><strong>示例 1:</strong></p>
2323

24-
<p><strong><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/06/5510ex1.png" style="height: 191px; width: 179px;"></strong></p>
24+
![](./images/5510ex1.png)
2525

2626
<pre><strong>输入:</strong>n = 4, edges = [[3,1,2],[3,2,3],[1,1,3],[1,2,4],[1,1,2],[2,3,4]]
2727
<strong>输出:</strong>2
@@ -30,7 +30,7 @@
3030

3131
<p><strong>示例 2:</strong></p>
3232

33-
<p><strong><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/06/5510ex2.png" style="height: 190px; width: 178px;"></strong></p>
33+
![](./images/5510ex2.png)
3434

3535
<pre><strong>输入:</strong>n = 4, edges = [[3,1,2],[3,2,3],[1,1,4],[2,1,4]]
3636
<strong>输出:</strong>0
@@ -39,7 +39,7 @@
3939

4040
<p><strong>示例 3:</strong></p>
4141

42-
<p><strong><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/06/5510ex3.png" style="height: 190px; width: 178px;"></strong></p>
42+
![](./images/5510ex3.png)
4343

4444
<pre><strong>输入:</strong>n = 4, edges = [[3,2,3],[1,1,2],[2,3,4]]
4545
<strong>输出:</strong>-1

solution/1500-1599/1591.Strange Printer II/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020

2121
<p><strong>示例 1:</strong></p>
2222

23-
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/19/sample_1_1929.png" style="height: 138px; width: 483px;"></p>
23+
![](./images/sample_1_1929.png)
2424

2525
<pre><strong>输入:</strong>targetGrid = [[1,1,1,1],[1,2,2,1],[1,2,2,1],[1,1,1,1]]
2626
<strong>输出:</strong>true
2727
</pre>
2828

2929
<p><strong>示例 2:</strong></p>
3030

31-
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/19/sample_2_1929.png" style="height: 290px; width: 483px;"></p>
31+
![](./images/sample_2_1929.png)
3232

3333
<pre><strong>输入:</strong>targetGrid = [[1,1,1,1],[1,1,3,3],[1,1,3,4],[5,5,1,4]]
3434
<strong>输出:</strong>true
Loading
Loading

solution/1500-1599/1595.Minimum Cost to Connect Two Groups of Points/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<p><strong>示例 1:</strong></p>
1717

18-
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/20/ex1.jpg" style="height: 243px; width: 322px;"></p>
18+
![](./images/ex1.jpg)
1919

2020
<pre><strong>输入:</strong>cost = [[15, 96], [36, 2]]
2121
<strong>输出:</strong>17
@@ -27,7 +27,7 @@
2727

2828
<p><strong>示例 2:</strong></p>
2929

30-
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/20/ex2.jpg" style="height: 403px; width: 322px;"></p>
30+
![](./images/ex2.jpg)
3131

3232
<pre><strong>输入:</strong>cost = [[1, 3, 5], [4, 1, 1], [1, 5, 3]]
3333
<strong>输出:</strong>4
Loading
Loading

solution/1500-1599/1598.Crawler Log Folder/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<p><strong>示例 1:</strong></p>
2727

28-
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/26/sample_11_1957.png" style="height: 151px; width: 775px;"></p>
28+
![](./images/sample_11_1957.png)
2929

3030
<pre><strong>输入:</strong>logs = [&quot;d1/&quot;,&quot;d2/&quot;,&quot;../&quot;,&quot;d21/&quot;,&quot;./&quot;]
3131
<strong>输出:</strong>2
@@ -34,7 +34,7 @@
3434

3535
<p><strong>示例 2:</strong></p>
3636

37-
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/26/sample_22_1957.png" style="height: 270px; width: 600px;"></p>
37+
![](./images/sample_22_1957.png)
3838

3939
<pre><strong>输入:</strong>logs = [&quot;d1/&quot;,&quot;d2/&quot;,&quot;./&quot;,&quot;d3/&quot;,&quot;../&quot;,&quot;d31/&quot;]
4040
<strong>输出:</strong>3
Loading
Loading

solution/1500-1599/1599.Maximum Profit of Operating a Centennial Wheel/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<p><strong>示例 1:</strong></p>
1919

20-
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/09/26/wheeldiagram12.png" style="height: 291px; width: 906px;"></p>
20+
![](./images/wheeldiagram12.png)
2121

2222
<pre><strong>输入:</strong>customers = [8,3], boardingCost = 5, runningCost = 6
2323
<strong>输出:</strong>3

0 commit comments

Comments
 (0)