Skip to content

Commit a65226b

Browse files
authored
chore: update lc problems (doocs#2042)
1 parent 3038cc8 commit a65226b

File tree

22 files changed

+133
-116
lines changed

22 files changed

+133
-116
lines changed

solution/0000-0099/0085.Maximal Rectangle/README.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,18 @@
2020

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

23-
<pre>
24-
<strong>输入:</strong>matrix = []
25-
<strong>输出:</strong>0
26-
</pre>
27-
28-
<p><strong>示例 3:</strong></p>
29-
3023
<pre>
3124
<strong>输入:</strong>matrix = [["0"]]
3225
<strong>输出:</strong>0
3326
</pre>
3427

35-
<p><strong>示例 4:</strong></p>
28+
<p><strong>示例 3:</strong></p>
3629

3730
<pre>
3831
<strong>输入:</strong>matrix = [["1"]]
3932
<strong>输出:</strong>1
4033
</pre>
4134

42-
<p><strong>示例 5:</strong></p>
43-
44-
<pre>
45-
<strong>输入:</strong>matrix = [["0","0"]]
46-
<strong>输出:</strong>0
47-
</pre>
48-
4935
<p>&nbsp;</p>
5036

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

solution/0600-0699/0616.Add Bold Tag in String/README.md

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,45 +6,58 @@
66

77
<!-- 这里写题目描述 -->
88

9-
<p>给你一个字符串 <code>s</code> 和一个字符串列表 <code>words</code> ,你需要将在字符串列表中出现过的 <code>s</code> 的子串添加加粗闭合标签 &lt;b&gt;&lt;/b&gt; 。</p>
9+
<p>给定字符串 <code>s</code> 和字符串数组 <code>words</code>。</p>
1010

11-
<p>如果两个子串有重叠部分,你需要把它们一起用一对闭合标签包围起来。同理,如果两个子字符串连续被加粗,那么你也需要把它们合起来用一对加粗标签包围。</p>
11+
<p>对于 <code>s</code> 内部的子字符串,若其存在于 <code>words</code> 数组中, 则通过添加闭合的粗体标签<meta charset="UTF-8" />&nbsp;<code>&lt;b&gt;</code>&nbsp;&nbsp;<code>&lt;/b&gt;</code>&nbsp;进行加粗标记。</p>
12+
13+
<ul>
14+
<li>如果两个这样的子字符串重叠,你应该仅使用一对闭合的粗体标签将它们包围起来。</li>
15+
<li>如果被粗体标签包围的两个子字符串是连续的,你应该将它们合并。</li>
16+
</ul>
1217

1318
<p>返回添加加粗标签后的字符串 <code>s</code> 。</p>
1419

15-
<p> </p>
20+
<p>&nbsp;</p>
1621

1722
<p><strong>示例 1:</strong></p>
1823

1924
<pre>
2025
<strong>输入:</strong> s = "abcxyz123", words = ["abc","123"]
2126
<strong>输出:</strong>"&lt;b&gt;abc&lt;/b&gt;xyz&lt;b&gt;123&lt;/b&gt;"
27+
<strong>解释:</strong>两个单词字符串是 s 的子字符串,如下所示: "abcxyz123"。
28+
我们在每个子字符串之前添加&lt;b&gt;,在每个子字符串之后添加&lt;/b&gt;
2229
</pre>
2330

2431
<p><strong>示例 2:</strong></p>
2532

2633
<pre>
2734
<strong>输入:</strong>s = "aaabbcc", words = ["aaa","aab","bc"]
2835
<strong>输出:</strong>"&lt;b&gt;aaabbc&lt;/b&gt;c"
36+
<strong>解释:</strong>
37+
"aa"作为子字符串出现了两次: "<u>aa</u>abbb" 和 "a<u>aa</u>bbb"。
38+
"b"作为子字符串出现了三次: "aaa<u>b</u>bb"、"aaab<u>b</u>b" 和 "aaabb<u>b</u>"。
39+
我们在每个子字符串之前添加&lt;b&gt;,在每个子字符串之后添加&lt;/b&gt;: "&lt;b&gt;a&lt;b&gt;a&lt;/b&gt;a&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;"。
40+
由于前两个&lt;b&gt;重叠,把它们合并得到: "&lt;b&gt;aaa&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;"。
41+
由于现在这四个&lt;b&gt;是连续的,把它们合并得到: "&lt;b&gt;aaabbb&lt;/b&gt;"。
2942
</pre>
3043

31-
<p> </p>
44+
<p>&nbsp;</p>
3245

3346
<p><strong>提示:</strong></p>
3447

3548
<ul>
36-
<li><code>1 <= s.length <= 1000</code></li>
37-
<li><code>0 <= words.length <= 100</code></li>
38-
<li><code>1 <= words[i].length <= 1000</code></li>
49+
<li><code>1 &lt;= s.length &lt;= 1000</code></li>
50+
<li><code>0 &lt;= words.length &lt;= 100</code></li>
51+
<li><code>1 &lt;= words[i].length &lt;= 1000</code></li>
3952
<li><code>s</code> 和 <code>words[i]</code> 由英文字母和数字组成</li>
4053
<li><code>words</code> 中的所有值 <strong>互不相同</strong></li>
4154
</ul>
4255

43-
<p> </p>
56+
<p>&nbsp;</p>
4457

4558
<p><strong>注:</strong>此题与「758 - 字符串中的加粗单词」相同 - <a href="https://leetcode.cn/problems/bold-words-in-string">https://leetcode.cn/problems/bold-words-in-string</a></p>
4659

47-
<p> </p>
60+
<p>&nbsp;</p>
4861

4962
## 解法
5063

solution/0600-0699/0616.Add Bold Tag in String/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ We add &lt;b&gt; before each substring and &lt;/b&gt; after each substring.
3535
&quot;b&quot; appears as a substring three times: &quot;aaa<u>b</u>bb&quot;, &quot;aaab<u>b</u>b&quot;, and &quot;aaabb<u>b</u>&quot;.
3636
We add &lt;b&gt; before each substring and &lt;/b&gt; after each substring: &quot;&lt;b&gt;a&lt;b&gt;a&lt;/b&gt;a&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&quot;.
3737
Since the first two &lt;b&gt;&#39;s overlap, we merge them: &quot;&lt;b&gt;aaa&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&lt;b&gt;b&lt;/b&gt;&quot;.
38-
Since now the four &lt;b&gt;&#39;s are consecuutive, we merge them: &quot;&lt;b&gt;aaabbb&lt;/b&gt;&quot;.
38+
Since now the four &lt;b&gt;&#39;s are consecutive, we merge them: &quot;&lt;b&gt;aaabbb&lt;/b&gt;&quot;.
3939
</pre>
4040

4141
<p>&nbsp;</p>

solution/0800-0899/0828.Count Unique Characters of All Substrings of a Given String/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<pre>
3232
<strong>输入: </strong>s = "ABA"
3333
<strong>输出: </strong>8
34-
<strong>解释: </strong>除<code>了 countUniqueChars</code>("ABA") = 1 之外,其余与示例 1 相同。
34+
<strong>解释: </strong>除了 countUniqueChars("ABA") = 1 之外,其余与示例 1 相同。
3535
</pre>
3636

3737
<p><strong class="example">示例 3:</strong></p>

solution/1900-1999/1921.Eliminate Maximum Number of Monsters/README.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66

77
<!-- 这里写题目描述 -->
88

9-
<p>你正在玩一款电子游戏,在游戏中你需要保护城市免受怪物侵袭。给你一个 <strong>下标从 0 开始</strong> 且长度为 <code>n</code> 的整数数组 <code>dist</code> ,其中 <code>dist[i]</code> 是第 <code>i</code> 个怪物与城市的 <strong>初始距离</strong>(单位:米)。</p>
9+
<p>你正在玩一款电子游戏,在游戏中你需要保护城市免受怪物侵袭。给定一个 <strong>下标从 0 开始</strong> 且大小为 <code>n</code> 的整数数组 <code>dist</code> ,其中 <code>dist[i]</code> 是第 <code>i</code> 个怪物与城市的 <strong>初始距离</strong>(单位:米)。</p>
1010

11-
<p>怪物以 <strong>恒定</strong> 的速度走向城市。给你一个长度为 <code>n</code> 的整数数组 <code>speed</code> 表示每个怪物的速度,其中 <code>speed[i]</code> 是第 <code>i</code> 个怪物的速度(单位:/分)。</p>
11+
<p>怪物以 <strong>恒定</strong> 的速度走向城市。每个怪物的速度都以一个长度为 <code>n</code> 的整数数组 <code>speed</code> 表示,其中 <code>speed[i]</code> 是第 <code>i</code> 个怪物的速度(单位:千米/分)。</p>
1212

13-
<p>怪物从 <strong>第 0 分钟</strong> 时开始移动。你有一把武器,并可以 <strong>选择</strong> 在每一分钟的开始时使用,包括第 0 分钟。但是你无法在一分钟的中间使用武器。这种武器威力惊人,一次可以消灭任一还活着的怪物。</p>
13+
<p>你有一种武器,一旦充满电,就可以消灭 <strong>一个</strong> 怪物。但是,武器需要 <strong>一分钟</strong> 才能充电。武器在游戏开始时是充满电的状态,怪物从 <strong>第 0 分钟</strong> 时开始移动。</p>
1414

15-
<p>一旦任一怪物到达城市,你就输掉了这场游戏。如果某个怪物 <strong></strong> 在某一分钟开始时到达城市,这会被视为<strong> 输掉</strong> 游戏,在你可以使用武器之前,游戏就会结束。</p>
15+
<p>一旦任一怪物到达城市,你就输掉了这场游戏。如果某个怪物 <strong>恰好</strong>&nbsp;在某一分钟开始时到达城市(距离表示为0),这也会被视为<strong> 输掉</strong>&nbsp;游戏,在你可以使用武器之前,游戏就会结束。</p>
1616

17-
<p>返回在你输掉游戏前可以消灭的怪物的 <strong>最大</strong> 数量。如果你可以在所有怪物到达城市前将它们全部消灭,返回  <code>n</code> 。</p>
17+
<p>返回在你输掉游戏前可以消灭的怪物的 <strong>最大</strong> 数量。如果你可以在所有怪物到达城市前将它们全部消灭,返回&nbsp; <code>n</code> 。</p>
1818

19-
<p> </p>
19+
<p>&nbsp;</p>
2020

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

@@ -25,9 +25,8 @@
2525
<strong>输出:</strong>3
2626
<strong>解释:</strong>
2727
第 0 分钟开始时,怪物的距离是 [1,3,4],你消灭了第一个怪物。
28-
第 1 分钟开始时,怪物的距离是 [X,2,3],你没有消灭任何怪物。
29-
第 2 分钟开始时,怪物的距离是 [X,1,2],你消灭了第二个怪物。
30-
第 3 分钟开始时,怪物的距离是 [X,X,1],你消灭了第三个怪物。
28+
第 1 分钟开始时,怪物的距离是 [X,2,3],你消灭了第二个怪物。
29+
第 3 分钟开始时,怪物的距离是 [X,X,2],你消灭了第三个怪物。
3130
所有 3 个怪物都可以被消灭。</pre>
3231

3332
<p><strong>示例 2:</strong></p>
@@ -37,7 +36,7 @@
3736
<strong>输出:</strong>1
3837
<strong>解释:</strong>
3938
第 0 分钟开始时,怪物的距离是 [1,1,2,3],你消灭了第一个怪物。
40-
第 1 分钟开始时,怪物的距离是 [X,0,1,2],你输掉了游戏
39+
第 1 分钟开始时,怪物的距离是 [X,0,1,2],所以你输掉了游戏
4140
你只能消灭 1 个怪物。
4241
</pre>
4342

@@ -52,14 +51,14 @@
5251
你只能消灭 1 个怪物。
5352
</pre>
5453

55-
<p> </p>
54+
<p>&nbsp;</p>
5655

5756
<p><strong>提示:</strong></p>
5857

5958
<ul>
6059
<li><code>n == dist.length == speed.length</code></li>
61-
<li><code>1 <= n <= 10<sup>5</sup></code></li>
62-
<li><code>1 <= dist[i], speed[i] <= 10<sup>5</sup></code></li>
60+
<li><code>1 &lt;= n &lt;= 10<sup>5</sup></code></li>
61+
<li><code>1 &lt;= dist[i], speed[i] &lt;= 10<sup>5</sup></code></li>
6362
</ul>
6463

6564
## 解法

solution/2300-2399/2336.Smallest Number in Infinite Set/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@
1313
<ul>
1414
<li><code>SmallestInfiniteSet()</code> 初始化 <strong>SmallestInfiniteSet</strong> 对象以包含 <strong>所有</strong> 正整数。</li>
1515
<li><code>int popSmallest()</code> <strong>移除</strong> 并返回该无限集中的最小整数。</li>
16-
<li><code>void addBack(int num)</code> 如果正整数 <code>num</code> <strong>不</strong> 存在于无限集中,则将一个 <code>num</code> <strong>添加</strong> 到该无限集中。</li>
16+
<li><code>void addBack(int num)</code> 如果正整数 <code>num</code> <strong>不</strong> 存在于无限集中,则将一个 <code>num</code> <strong>添加</strong> 到该无限集最后。</li>
1717
</ul>
1818

1919
<p>&nbsp;</p>
2020

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

23-
<pre><strong>输入</strong>
23+
<pre>
24+
<strong>输入</strong>
2425
["SmallestInfiniteSet", "addBack", "popSmallest", "popSmallest", "popSmallest", "addBack", "popSmallest", "popSmallest", "popSmallest"]
2526
[[], [2], [], [], [], [1], [], [], []]
2627
<strong>输出</strong>

solution/2300-2399/2397.Maximum Rows Covered by Columns/README.md

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,49 @@
66

77
<!-- 这里写题目描述 -->
88

9-
<p>给你一个下标从 <strong>0</strong>&nbsp;开始的&nbsp;<code>m x n</code>&nbsp;二进制矩阵&nbsp;<code>mat</code>&nbsp;和一个整数&nbsp;<code>cols</code>&nbsp;,表示你需要选出的列数。</p>
9+
<p>给你一个下标从 <strong>0 </strong>开始、大小为 <code>m x n</code> 的二进制矩阵 <code>matrix</code> ;另给你一个整数 <code>numSelect</code>,表示你必须从 <code>matrix</code> 中选择的 <strong>不同</strong> 列的数量。</p>
1010

11-
<p>如果一行中,所有的 <code>1</code> 都被你选中的列所覆盖,那么我们称这一行 <strong>被覆盖</strong>&nbsp;了。</p>
11+
<p>如果一行中所有的 <code>1</code> 都被你选中的列所覆盖,则认为这一行被 <strong>覆盖</strong> 了。</p>
1212

13-
<p>请你返回在选择 <code>cols</code>&nbsp;列的情况下,<strong>被覆盖</strong>&nbsp;的行数 <strong>最大</strong>&nbsp;为多少。</p>
13+
<p><strong>形式上</strong>,假设 <code>s = {c<sub>1</sub>, c<sub>2</sub>, ...., c<sub>numSelect</sub>}</code> 是你选择的列的集合。对于矩阵中的某一行 <code>row</code> ,如果满足下述条件,则认为这一行被集合 <code>s</code> <strong>覆盖</strong>:</p>
14+
15+
<ul>
16+
<li>对于满足 <code>matrix[row][col] == 1</code> 的每个单元格 <code>matrix[row][col]</code>(<code>0 &lt;= col &lt;= n - 1</code>),<code>col</code> 均存在于 <code>s</code> 中,或者</li>
17+
<li><code>row</code> 中 <strong>不存在</strong> 值为 <code>1</code> 的单元格。</li>
18+
</ul>
19+
20+
<p>你需要从矩阵中选出 <code>numSelect</code> 个列,使集合覆盖的行数最大化。</p>
21+
22+
<p>返回一个整数,表示可以由 <code>numSelect</code> 列构成的集合 <strong>覆盖</strong> 的 <strong>最大行数</strong> 。</p>
1423

1524
<p>&nbsp;</p>
1625

1726
<p><strong>示例 1:</strong></p>
1827

19-
<p><strong><img alt="" src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/2300-2399/2397.Maximum%20Rows%20Covered%20by%20Columns/images/rowscovered.png" style="width: 250px; height: 417px;"></strong></p>
28+
<p><strong><img alt="" src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/2300-2399/2397.Maximum%20Rows%20Covered%20by%20Columns/images/rowscovered.png" style="width: 250px; height: 417px;" /></strong></p>
2029

21-
<pre><b>输入:</b>mat = [[0,0,0],[1,0,1],[0,1,1],[0,0,1]], cols = 2
30+
<pre>
31+
<b>输入:</b>matrix = [[0,0,0],[1,0,1],[0,1,1],[0,0,1]], numSelect = 2
2232
<b>输出:</b>3
2333
<strong>解释:</strong>
24-
如上图所示,覆盖 3 行的一种可行办法是选择第 0 和第 2 列。
25-
可以看出,不存在大于 3 行被覆盖的方案,所以我们返回 3 。
26-
</pre>
34+
图示中显示了一种覆盖 3 行的可行办法。
35+
选择 s = {0, 2} 。
36+
- 第 0 行被覆盖,因为其中没有出现 1 。
37+
- 第 1 行被覆盖,因为值为 1 的两列(即 0 和 2)均存在于 s 中。
38+
- 第 2 行未被覆盖,因为 matrix[2][1] == 1 但是 1 未存在于 s 中。
39+
- 第 3 行被覆盖,因为 matrix[2][2] == 1 且 2 存在于 s 中。
40+
因此,可以覆盖 3 行。
41+
另外 s = {1, 2} 也可以覆盖 3 行,但可以证明无法覆盖更多行。</pre>
2742

2843
<p><strong>示例 2:</strong></p>
2944

30-
<p><strong><img alt="" src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/2300-2399/2397.Maximum%20Rows%20Covered%20by%20Columns/images/rowscovered2.png" style="width: 83px; height: 247px;"></strong></p>
45+
<p><strong><img alt="" src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/2300-2399/2397.Maximum%20Rows%20Covered%20by%20Columns/images/rowscovered2.png" style="width: 83px; height: 247px;" /></strong></p>
3146

32-
<pre><b>输入:</b>mat = [[1],[0]], cols = 1
47+
<pre>
48+
<b>输入:</b>matrix = [[1],[0]], numSelect = 1
3349
<b>输出:</b>2
3450
<strong>解释:</strong>
35-
选择唯一的一列,两行都被覆盖了,原因是整个矩阵都被覆盖了
51+
选择唯一的一列,两行都被覆盖了,因为整个矩阵都被覆盖了
3652
所以我们返回 2 。
3753
</pre>
3854

@@ -41,11 +57,11 @@
4157
<p><strong>提示:</strong></p>
4258

4359
<ul>
44-
<li><code>m == mat.length</code></li>
45-
<li><code>n == mat[i].length</code></li>
60+
<li><code>m == matrix.length</code></li>
61+
<li><code>n == matrix[i].length</code></li>
4662
<li><code>1 &lt;= m, n &lt;= 12</code></li>
47-
<li><code>mat[i][j]</code>&nbsp;要么是&nbsp;<code>0</code>&nbsp;要么是&nbsp;<code>1</code>&nbsp;。</li>
48-
<li><code>1 &lt;= cols &lt;= n</code></li>
63+
<li><code>matrix[i][j]</code> 要么是 <code>0</code> 要么是 <code>1</code></li>
64+
<li><code>1 &lt;= numSelect&nbsp;&lt;= n</code></li>
4965
</ul>
5066

5167
## 解法

solution/2500-2599/2528.Maximize the Minimum Powered City/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [2528. 最大化城市的最小供电站数目](https://leetcode.cn/problems/maximize-the-minimum-powered-city)
1+
# [2528. 最大化城市的最小电量](https://leetcode.cn/problems/maximize-the-minimum-powered-city)
22

33
[English Version](/solution/2500-2599/2528.Maximize%20the%20Minimum%20Powered%20City/README_EN.md)
44

@@ -18,7 +18,7 @@
1818

1919
<p>政府批准了可以额外建造 <code>k</code>&nbsp;座供电站,你需要决定这些供电站分别应该建在哪里,这些供电站与已经存在的供电站有相同的供电范围。</p>
2020

21-
<p>给你两个整数&nbsp;<code>r</code> 和&nbsp;<code>k</code>&nbsp;,如果以最优策略建造额外的发电站,返回所有城市中,最小供电站数目的最大值是多少。</p>
21+
<p>给你两个整数&nbsp;<code>r</code> 和&nbsp;<code>k</code>&nbsp;,如果以最优策略建造额外的发电站,返回所有城市中,最小电量的最大值是多少。</p>
2222

2323
<p>这 <code>k</code>&nbsp;座供电站可以建在多个城市。</p>
2424

solution/2700-2799/2720.Popularity Percentage/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
| user1 | int |
1616
| user2 | int |
1717
+-------------+------+
18-
(user1, user2) 是该表的主键。
19-
每一行包含关于用户1和用户2是朋友的信息
18+
(user1, user2) 是该表的主键(具有唯一值的列)
19+
每一行包含关于朋友关系的信息,其中 user1 和 user2 是朋友
2020
</pre>
2121

2222
<p>编写一条 SQL 查询,找出 Meta/Facebook 平台上每个用户的受欢迎度的百分比。受欢迎度百分比定义为用户拥有的朋友总数除以平台上的总用户数,然后乘以 100,并&nbsp;<strong>四舍五入保留 2 位小数&nbsp;</strong>。</p>
2323

2424
<p>返回按照 <code>user1</code> <strong>升序</strong> 排序的结果表。</p>
2525

26-
<p>查询结果的格式如下所示。</p>
26+
<p>查询结果格式如下示例所示。</p>
2727

2828
<p>&nbsp;</p>
2929

solution/2700-2799/2720.Popularity Percentage/README_EN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
| user1 | int |
1414
| user2 | int |
1515
+-------------+------+
16-
(user1, user2) is the primary key of this table.
16+
(user1, user2) is the primary key (combination of unique values) of this table.
1717
Each row contains information about friendship where user1 and user2 are friends.
1818
</pre>
1919

20-
<p>Write an SQL query to find the popularity percentage for each user on Meta/Facebook. The popularity percentage is defined as the total number of friends the user has divided by the total number of users on the platform, then converted into a percentage by multiplying by 100, <strong>rounded to 2 decimal places</strong>.</p>
20+
<p>Write a solution to find the popularity percentage for each user on Meta/Facebook. The popularity percentage is defined as the total number of friends the user has divided by the total number of users on the platform, then converted into a percentage by multiplying by 100, <strong>rounded to 2 decimal places</strong>.</p>
2121

2222
<p>Return <em>the result table ordered by</em> <code>user1</code> <em>in <strong>ascending</strong> order.</em></p>
2323

24-
<p>The query result format is in the following example.</p>
24+
<p>The result format is in the following example.</p>
2525

2626
<p>&nbsp;</p>
2727
<p><strong class="example">Example 1:</strong></p>

0 commit comments

Comments
 (0)