Skip to content

Commit 62226f4

Browse files
committed
feat: use absolute path
1 parent a601c6b commit 62226f4

File tree

839 files changed

+1577
-1577
lines changed

Some content is hidden

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

839 files changed

+1577
-1577
lines changed

solution/0000-0099/0002.Add Two Numbers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<p> </p>
1616

1717
<p><strong>示例 1:</strong></p>
18-
<img alt="" src="/solution/0000-0099/0002.Add Two Numbers/images/addtwonumber1.jpg" style="width: 483px; height: 342px;" />
18+
<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0002.Add%20Two%20Numbers/images/addtwonumber1.jpg" style="width: 483px; height: 342px;" />
1919
<pre>
2020
<strong>输入:</strong>l1 = [2,4,3], l2 = [5,6,4]
2121
<strong>输出:</strong>[7,0,8]

solution/0000-0099/0002.Add Two Numbers/README_EN.md

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

1111
<p>&nbsp;</p>
1212
<p><strong>Example 1:</strong></p>
13-
<img alt="" src="/solution/0000-0099/0002.Add Two Numbers/images/addtwonumber1.jpg" style="width: 483px; height: 342px;" />
13+
<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0002.Add%20Two%20Numbers/images/addtwonumber1.jpg" style="width: 483px; height: 342px;" />
1414
<pre>
1515
<strong>Input:</strong> l1 = [2,4,3], l2 = [5,6,4]
1616
<strong>Output:</strong> [7,0,8]

solution/0000-0099/0011.Container With Most Water/README.md

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

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

17-
<p><img alt="" src="/solution/0000-0099/0011.Container With Most Water/images/question_11.jpg" style="height: 287px; width: 600px;" /></p>
17+
<p><img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0011.Container%20With%20Most%20Water/images/question_11.jpg" style="height: 287px; width: 600px;" /></p>
1818

1919
<pre>
2020
<strong>输入:</strong>[1,8,6,2,5,4,8,3,7]

solution/0000-0099/0011.Container With Most Water/README_EN.md

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

1111
<p>&nbsp;</p>
1212
<p><strong>Example 1:</strong></p>
13-
<img alt="" src="/solution/0000-0099/0011.Container With Most Water/images/question_11.jpg" style="width: 600px; height: 287px;" />
13+
<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0011.Container%20With%20Most%20Water/images/question_11.jpg" style="width: 600px; height: 287px;" />
1414
<pre>
1515
<strong>Input:</strong> height = [1,8,6,2,5,4,8,3,7]
1616
<strong>Output:</strong> 49

solution/0000-0099/0017.Letter Combinations of a Phone Number/README.md

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

1111
<p>给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。</p>
1212

13-
<p><img src="/solution/0000-0099/0017.Letter Combinations of a Phone Number/images/17_telephone_keypad.png" style="width: 200px;" /></p>
13+
<p><img src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0017.Letter%20Combinations%20of%20a%20Phone%20Number/images/17_telephone_keypad.png" style="width: 200px;" /></p>
1414

1515
<p> </p>
1616

solution/0000-0099/0017.Letter Combinations of a Phone Number/README_EN.md

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

99
<p>A mapping of digit to letters (just like on the telephone buttons) is given below. Note that 1 does not map to any letters.</p>
1010

11-
<p><img src="/solution/0000-0099/0017.Letter Combinations of a Phone Number/images/200px-Telephone-keypad2.svg.png" style="width: 200px; height: 162px;" /></p>
11+
<p><img src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0017.Letter%20Combinations%20of%20a%20Phone%20Number/images/200px-Telephone-keypad2.svg.png" style="width: 200px; height: 162px;" /></p>
1212

1313
<p>&nbsp;</p>
1414
<p><strong>Example 1:</strong></p>

solution/0000-0099/0019.Remove Nth Node From End of List/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<p> </p>
1414

1515
<p><strong>示例 1:</strong></p>
16-
<img alt="" src="/solution/0000-0099/0019.Remove Nth Node From End of List/images/remove_ex1.jpg" style="width: 542px; height: 222px;" />
16+
<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0019.Remove%20Nth%20Node%20From%20End%20of%20List/images/remove_ex1.jpg" style="width: 542px; height: 222px;" />
1717
<pre>
1818
<strong>输入:</strong>head = [1,2,3,4,5], n = 2
1919
<strong>输出:</strong>[1,2,3,5]

solution/0000-0099/0019.Remove Nth Node From End of List/README_EN.md

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

1111
<p>&nbsp;</p>
1212
<p><strong>Example 1:</strong></p>
13-
<img alt="" src="/solution/0000-0099/0019.Remove Nth Node From End of List/images/remove_ex1.jpg" style="width: 542px; height: 222px;" />
13+
<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0019.Remove%20Nth%20Node%20From%20End%20of%20List/images/remove_ex1.jpg" style="width: 542px; height: 222px;" />
1414
<pre>
1515
<strong>Input:</strong> head = [1,2,3,4,5], n = 2
1616
<strong>Output:</strong> [1,2,3,5]

solution/0000-0099/0021.Merge Two Sorted Lists/README.md

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

1313
<p><strong>示例 1:</strong></p>
14-
<img alt="" src="/solution/0000-0099/0021.Merge Two Sorted Lists/images/merge_ex1.jpg" style="width: 662px; height: 302px;" />
14+
<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0021.Merge%20Two%20Sorted%20Lists/images/merge_ex1.jpg" style="width: 662px; height: 302px;" />
1515
<pre>
1616
<strong>输入:</strong>l1 = [1,2,4], l2 = [1,3,4]
1717
<strong>输出:</strong>[1,1,2,3,4,4]

solution/0000-0099/0021.Merge Two Sorted Lists/README_EN.md

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

99
<p>&nbsp;</p>
1010
<p><strong>Example 1:</strong></p>
11-
<img alt="" src="/solution/0000-0099/0021.Merge Two Sorted Lists/images/merge_ex1.jpg" style="width: 662px; height: 302px;" />
11+
<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0021.Merge%20Two%20Sorted%20Lists/images/merge_ex1.jpg" style="width: 662px; height: 302px;" />
1212
<pre>
1313
<strong>Input:</strong> l1 = [1,2,4], l2 = [1,3,4]
1414
<strong>Output:</strong> [1,1,2,3,4,4]

0 commit comments

Comments
 (0)