Skip to content

Commit a4dad0b

Browse files
authored
chore: update lc problems: No.0263,No.0266,No.0267,No.0269,No.0274,No.0275 (doocs#1509)
1 parent 9c01e18 commit a4dad0b

File tree

8 files changed

+22
-16
lines changed

8 files changed

+22
-16
lines changed

solution/0200-0299/0263.Ugly Number/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<pre>
3232
<strong>输入:</strong>n = 14
3333
<strong>输出:</strong>false
34-
<strong>解释:</strong>14 不是丑数,因为它包含了另外一个质因数&nbsp;<code>7 </code>
34+
<strong>解释:</strong>14 不是丑数,因为它包含了另外一个质因数&nbsp;7
3535
</pre>
3636

3737
<p>&nbsp;</p>

solution/0200-0299/0266.Palindrome Permutation/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
<p><strong>示例 1:</strong></p>
1212

13-
<pre><strong>输入:</strong> <code>&quot;code&quot;</code>
13+
<pre><strong>输入:</strong> &quot;code&quot;
1414
<strong>输出:</strong> false</pre>
1515

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

18-
<pre><strong>输入:</strong> <code>&quot;aab&quot;</code>
18+
<pre><strong>输入:</strong> &quot;aab&quot;
1919
<strong>输出:</strong> true</pre>
2020

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

23-
<pre><strong>输入:</strong> <code>&quot;carerac&quot;</code>
23+
<pre><strong>输入:</strong> &quot;carerac&quot;
2424
<strong>输出:</strong> true</pre>
2525

2626
## 解法

solution/0200-0299/0267.Palindrome Permutation II/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
<p><strong>示例 1:</strong></p>
1616

1717
<pre>
18-
<strong>输入: </strong>s = <code>"aabb"</code>
19-
<strong>输出: </strong><code>["abba", "baab"]</code></pre>
18+
<strong>输入: </strong>s = "aabb"
19+
<strong>输出: </strong>["abba", "baab"]></pre>
2020

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

2323
<pre>
24-
<strong>输入: </strong>s = <code>"abc"</code>
25-
<strong>输出: </strong><code>[]</code>
24+
<strong>输入: </strong>s = "abc"
25+
<strong>输出: </strong>[]
2626
</pre>
2727

2828
<p>&nbsp;</p>

solution/0200-0299/0269.Alien Dictionary/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<pre>
3636
<strong>输入:</strong>words = ["z","x","z"]
3737
<strong>输出:</strong>""
38-
<strong>解释:</strong>不存在合法字母顺序,因此返回 <code>"" 。</code>
38+
<strong>解释:</strong>不存在合法字母顺序,因此返回 "" 。
3939
</pre>
4040

4141
<p>&nbsp;</p>

solution/0200-0299/0269.Alien Dictionary/README_EN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<pre>
3333
<strong>Input:</strong> words = [&quot;z&quot;,&quot;x&quot;,&quot;z&quot;]
3434
<strong>Output:</strong> &quot;&quot;
35-
<strong>Explanation:</strong> The order is invalid, so return <code>&quot;&quot;</code>.
35+
<strong>Explanation:</strong> The order is invalid, so return &quot;&quot;.
3636
</pre>
3737

3838
<p>&nbsp;</p>

solution/0200-0299/0274.H-Index/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<p><strong>示例 1:</strong></p>
1616

1717
<pre>
18-
<strong>输入:</strong><code>citations = [3,0,6,1,5]</code>
18+
<strong>输入:</strong>citations = [3,0,6,1,5]
1919
<strong>输出:</strong>3
20-
<strong>解释:</strong>给定数组表示研究者总共有 <code>5</code> 篇论文,每篇论文相应的被引用了 <code>3, 0, 6, 1, 5</code> 次。
21-
&nbsp; 由于研究者有 <code>3 </code>篇论文每篇 <strong>至少 </strong>被引用了 <code>3</code> 次,其余两篇论文每篇被引用 <strong>不多于</strong> <code>3</code> 次,所以她的 <em>h </em>指数是 <code>3</code>。</pre>
20+
<strong>解释:</strong>给定数组表示研究者总共有 5 篇论文,每篇论文相应的被引用了 3, 0, 6, 1, 5 次。
21+
&nbsp; 由于研究者有 3 篇论文每篇 <strong>至少 </strong>被引用了 3 次,其余两篇论文每篇被引用 <strong>不多于</strong> 3 次,所以她的 <em>h </em>指数是 3。</pre>
2222

2323
<p><strong>示例 2:</strong></p>
2424

solution/0200-0299/0275.H-Index II/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
<p><strong class="example">示例 1:</strong></p>
1818

1919
<pre>
20-
<strong>输入<code>:</code></strong><code>citations = [0,1,3,5,6]</code>
20+
<strong>输入:</strong>citations = [0,1,3,5,6]
2121
<strong>输出:</strong>3
22-
<strong>解释:</strong>给定数组表示研究者总共有 <code>5</code> 篇论文,每篇论文相应的被引用了 0<code>, 1, 3, 5, 6</code> 次。
23-
&nbsp; 由于研究者有 <code>3 </code>篇论文每篇<strong> 至少 </strong>被引用了 <code>3</code> 次,其余两篇论文每篇被引用<strong> 不多于</strong> <code>3</code> 次,所以她的<em> h </em>指数是 <code>3</code> 。</pre>
22+
<strong>解释:</strong>给定数组表示研究者总共有 5 篇论文,每篇论文相应的被引用了 0, 1, 3, 5, 6 次。
23+
&nbsp; 由于研究者有 3 篇论文每篇<strong> 至少 </strong>被引用了 3 次,其余两篇论文每篇被引用<strong> 不多于</strong> 3 次,所以她的<em> h </em>指数是 3 。</pre>
2424

2525
<p><strong class="example">示例 2:</strong></p>
2626

solution/config.py

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
258,
1313
259,
1414
261,
15+
263,
16+
266,
17+
267,
18+
269,
19+
274,
20+
275,
1521
279,
1622
280,
1723
281,

0 commit comments

Comments
 (0)