Skip to content

Commit b266b0c

Browse files
committed
fix: update images path
1 parent b46e88b commit b266b0c

File tree

203 files changed

+282
-512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+282
-512
lines changed

solution/0400-0499/0463.Island Perimeter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
<strong>解释:</strong> 它的周长是下面图片中的 16 个黄色的边:
2626

27-
<img src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/12/island.png">
2827
</pre>
2928

29+
![](./images/island.png)
3030

3131

3232
## 解法

solution/0400-0499/0463.Island Perimeter/README_EN.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,9 @@
4343

4444
<strong>Explanation:</strong> The perimeter is the 16 yellow stripes in the image below:
4545

46-
47-
48-
<img src="https://assets.leetcode.com/uploads/2018/10/12/island.png" style="width: 221px; height: 213px;" />
49-
5046
</pre>
5147

52-
48+
![](./images/island.png)
5349

5450

5551
## Solutions
Loading

solution/0400-0499/0498.Diagonal Traverse/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@
2020
<strong>输出:</strong> [1,2,4,7,5,3,6,8,9]
2121

2222
<strong>解释:</strong>
23-
<img src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/12/diagonal_traverse.png" style="width: 220px;">
23+
2424
</pre>
2525

26+
![](./images/diagonal_traverse.png)
27+
2628
<p>&nbsp;</p>
2729

2830
<p><strong>说明:</strong></p>

solution/0400-0499/0498.Diagonal Traverse/README_EN.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,9 @@
3636

3737

3838
<b>Explanation:</b>
39-
40-
<img src="https://assets.leetcode.com/uploads/2018/10/12/diagonal_traverse.png" style="width: 220px;" />
41-
4239
</pre>
4340

41+
![](./images/diagonal_traverse.png)
4442

4543

4644
<p>&nbsp;</p>
Loading

solution/0500-0599/0500.Keyboard Row/README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@
1111
<p>&nbsp;</p>
1212

1313

14-
15-
<p><img alt="American keyboard" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/12/keyboard.png" style="width: 100%; max-width: 600px"></p>
16-
17-
14+
![](./images/keyboard.png)
1815

1916
<p>&nbsp;</p>
2017

@@ -41,11 +38,8 @@
4138

4239

4340
<ol>
44-
4541
<li>你可以重复使用键盘上同一字符。</li>
46-
4742
<li>你可以假设输入的字符串将只包含字母。</li>
48-
4943
</ol>
5044

5145

solution/0500-0599/0500.Keyboard Row/README_EN.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313

14-
<p><img alt="" src="https://assets.leetcode.com/uploads/2018/10/12/keyboard.png" style="width: 100%; max-width: 600px" /></p>
14+
![](./images/keyboard.png)
1515

1616
&nbsp;
1717

@@ -40,11 +40,8 @@
4040

4141

4242
<ol>
43-
4443
<li>You may use one character in the keyboard more than once.</li>
45-
4644
<li>You may assume the input string will only contain letters of alphabet.</li>
47-
4845
</ol>
4946

5047

Loading

solution/0500-0599/0514.Freedom Trail/README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@
2121

2222

2323
<ol>
24-
2524
<li>您可以将&nbsp;<strong>ring&nbsp;</strong>顺时针或逆时针旋转<strong>一个位置</strong>,计为1步。旋转的最终目的是将字符串&nbsp;<strong>ring&nbsp;</strong>的一个字符与 12:00 方向对齐,并且这个字符必须等于字符&nbsp;<strong>key[i] 。</strong></li>
26-
2725
<li>如果字符&nbsp;<strong>key[i]&nbsp;</strong>已经对齐到12:00方向,您需要按下中心按钮进行拼写,这也将算作&nbsp;<strong>1 步</strong>。按完之后,您可以开始拼写&nbsp;<strong>key&nbsp;</strong>的下一个字符(下一阶段), 直至完成所有拼写。</li>
28-
2926
</ol>
3027

3128

@@ -38,7 +35,7 @@
3835

3936

4037

41-
<center><img src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/22/ring.jpg" style="width: 26%;"></center>
38+
![](./images/ring.jpg)
4239

4340
&nbsp;
4441

@@ -67,13 +64,9 @@
6764

6865

6966
<ol>
70-
7167
<li><strong>ring</strong> 和&nbsp;<strong>key</strong>&nbsp;的字符串长度取值范围均为&nbsp;1 至&nbsp;100;</li>
72-
7368
<li>两个字符串中都只有小写字符,并且均可能存在重复字符;</li>
74-
7569
<li>字符串&nbsp;<strong>key</strong>&nbsp;一定可以由字符串 <strong>ring</strong>&nbsp;旋转拼出。</li>
76-
7770
</ol>
7871

7972

0 commit comments

Comments
 (0)