Skip to content

Commit a7f9b88

Browse files
committedJun 11, 2023
chore: update lc problems
1 parent 3efa26a commit a7f9b88

File tree

50 files changed

+1233
-396
lines changed

Some content is hidden

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

50 files changed

+1233
-396
lines changed
 

‎solution/0000-0099/0049.Group Anagrams/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<p>给你一个字符串数组,请你将 <strong>字母异位词</strong> 组合在一起。可以按任意顺序返回结果列表。</p>
1010

11-
<p><strong>字母异位词</strong> 是由重新排列源单词的字母得到的一个新单词,所有源单词中的字母通常恰好只用一次。</p>
11+
<p><strong>字母异位词</strong> 是由重新排列源单词的所有字母得到的一个新单词。</p>
1212

1313
<p>&nbsp;</p>
1414

‎solution/0100-0199/0134.Gas Station/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<p>你有一辆油箱容量无限的的汽车,从第<em> </em><code>i</code><em> </em>个加油站开往第<em> </em><code>i+1</code><em>&nbsp;</em>个加油站需要消耗汽油&nbsp;<code>cost[i]</code><em>&nbsp;</em>升。你从其中的一个加油站出发,开始时油箱为空。</p>
1212

13-
<p>给定两个整数数组 <code>gas</code> 和 <code>cost</code> ,如果你可以绕环路行驶一周,则返回出发时加油站的编号,否则返回 <code>-1</code> 。如果存在解,则 <strong>保证</strong> 它是 <strong>唯一</strong> 的。</p>
13+
<p>给定两个整数数组 <code>gas</code> 和 <code>cost</code> ,如果你可以按顺序绕环路行驶一周,则返回出发时加油站的编号,否则返回 <code>-1</code> 。如果存在解,则 <strong>保证</strong> 它是 <strong>唯一</strong> 的。</p>
1414

1515
<p>&nbsp;</p>
1616

0 commit comments

Comments
 (0)