Skip to content

Commit 80dcc36

Browse files
committed
fix: update images path
1 parent 95d4c9c commit 80dcc36

File tree

34 files changed

+42
-112
lines changed

34 files changed

+42
-112
lines changed

solution/0700-0799/0787.Cheapest Flights Within K Stops/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ src = 0, dst = 2, k = 1
1818
<strong>输出:</strong> 200
1919
<strong>解释:</strong>
2020
城市航班图如下
21-
<img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/02/16/995.png" style="height: 180px; width: 246px;">
2221

2322
从城市 0 到城市 2 在 1 站中转以内的最便宜价格是 200,如图中红色所示。</pre>
2423

24+
![](./images/995.png)
25+
2526
<p><strong>示例 2:</strong></p>
2627

2728
<pre><strong>输入:</strong>
@@ -30,10 +31,11 @@ src = 0, dst = 2, k = 0
3031
<strong>输出:</strong> 500
3132
<strong>解释:</strong>
3233
城市航班图如下
33-
<img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/02/16/995.png" style="height: 180px; width: 246px;">
3434

3535
从城市 0 到城市 2 在 0 站中转以内的最便宜价格是 500,如图中蓝色所示。</pre>
3636

37+
![](./images/995.png)
38+
3739
<p>&nbsp;</p>
3840

3941
<p><strong>提示:</strong></p>

solution/0700-0799/0787.Cheapest Flights Within K Stops/README_EN.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ src = 0, dst = 2, k = 1
1515
<strong>Output:</strong> 200
1616
<strong>Explanation:</strong>
1717
The graph looks like this:
18-
<img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/02/16/995.png" style="height:180px; width:246px" />
1918

2019
The cheapest price from city <code>0</code> to city <code>2</code> with at most 1 stop costs 200, as marked red in the picture.</pre>
2120

21+
![](./images/995.png)
22+
2223
<pre>
2324
<strong>Example 2:</strong>
2425
<strong>Input:</strong>
@@ -27,10 +28,11 @@ src = 0, dst = 2, k = 0
2728
<strong>Output:</strong> 500
2829
<strong>Explanation:</strong>
2930
The graph looks like this:
30-
<img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/02/16/995.png" style="height:180px; width:246px" />
3131

3232
The cheapest price from city <code>0</code> to city <code>2</code> with at most 0 stop costs 500, as marked blue in the picture.</pre>
3333

34+
![](./images/995.png)
35+
3436
<p><strong>Note:</strong></p>
3537

3638
<ul>

solution/0700-0799/0799.Champagne Tower/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<p>例如,在倾倒一杯香槟后,最顶层的玻璃杯满了。倾倒了两杯香槟后,第二层的两个玻璃杯各自盛放一半的香槟。在倒三杯香槟后,第二层的香槟满了 - 此时总共有三个满的玻璃杯。在倒第四杯后,第三层中间的玻璃杯盛放了一半的香槟,他两边的玻璃杯各自盛放了四分之一的香槟,如下图所示。</p>
1212

13-
<p><img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/03/09/tower.png" style="height:200px; width:290px" /></p>
13+
![](./images/tower.png)
1414

1515
<p>现在当倾倒了非负整数杯香槟后,返回第 i 行 j 个玻璃杯所盛放的香槟占玻璃杯容积的比例(i 和 j都从0开始)。</p>
1616

solution/0700-0799/0799.Champagne Tower/README_EN.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@
1313

1414
<p>For example, after one cup of champagne is poured, the top most glass is full.&nbsp; After two cups of champagne are poured, the two glasses on the second row are half full.&nbsp; After three cups of champagne are poured, those two cups become full - there are 3 full glasses total now.&nbsp; After four cups of champagne are poured, the third row has the middle glass half full, and the two outside glasses are a quarter full, as pictured below.</p>
1515

16-
17-
18-
<p><img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/03/09/tower.png" style="height:200px; width:290px" /></p>
19-
20-
16+
![](./images/tower.png)
2117

2218
<p>Now after pouring some non-negative integer cups of champagne, return how full the j-th glass in the i-th row is (both i and j are 0 indexed.)</p>
2319

@@ -60,11 +56,8 @@
6056

6157

6258
<ul>
63-
6459
<li><code>poured</code>&nbsp;will&nbsp;be&nbsp;in the range of <code>[0, 10 ^ 9]</code>.</li>
65-
6660
<li><code>query_glass</code> and <code>query_row</code> will be in the range of <code>[0, 99]</code>.</li>
67-
6861
</ul>
6962

7063

Loading

solution/0800-0899/0802.Find Eventual Safe States/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
</pre>
2222

23-
<p><img alt="Illustration of graph" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/03/17/picture1.png" style="height:86px; width:300px" /></p>
23+
![](./images/picture1.png)
2424

2525
<p><strong>提示:</strong></p>
2626

solution/0800-0899/0802.Find Eventual Safe States/README_EN.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ Here is a diagram of the above graph.
3434
</pre>
3535

3636

37-
38-
<p><img alt="Illustration of graph" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/03/17/picture1.png" style="height:86px; width:300px" /></p>
37+
![](./images/picture1.png)
3938

4039

4140

@@ -44,13 +43,9 @@ Here is a diagram of the above graph.
4443

4544

4645
<ul>
47-
4846
<li><code>graph</code> will have length at most <code>10000</code>.</li>
49-
5047
<li>The number of edges in the graph will not exceed <code>32000</code>.</li>
51-
5248
<li>Each <code>graph[i]</code> will be a sorted list of different integers, chosen within the range <code>[0, graph.length - 1]</code>.</li>
53-
5449
</ul>
5550

5651

Loading

solution/0800-0899/0812.Largest Triangle Area/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
这五个点如下图所示。组成的橙色三角形是最大的,面积为2。
1515
</pre>
1616

17-
<p><img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/04/04/1027.png" style="height:328px; width:400px" /></p>
17+
![](./images/1027.png)
1818

1919
<p><strong>注意: </strong></p>
2020

solution/0800-0899/0812.Largest Triangle Area/README_EN.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,18 @@ The five points are show in the figure below. The red triangle is the largest.
2121

2222
</pre>
2323

24-
25-
26-
<p><img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/04/04/1027.png" style="height:328px; width:400px" /></p>
27-
24+
![](./images/1027.png)
2825

2926

3027
<p><strong>Notes: </strong></p>
3128

3229

3330

3431
<ul>
35-
3632
<li><code>3 &lt;= points.length &lt;= 50</code>.</li>
37-
3833
<li>No points will be duplicated.</li>
39-
4034
<li>&nbsp;<code>-50 &lt;= points[i][j] &lt;= 50</code>.</li>
41-
4235
<li>Answers within&nbsp;<code>10^-6</code>&nbsp;of the true value will be accepted as correct.</li>
43-
4436
</ul>
4537

4638

0 commit comments

Comments
 (0)