Skip to content

Commit b9abf33

Browse files
committed
fix: fix docs
1 parent 77cae90 commit b9abf33

5 files changed

+10
-10
lines changed

app/docs/CommunityShare/Leetcode/142.环形链表II_translated.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ docId: ylpucy1rbbnfpe3t62u8kcfq
8383
b.fast Compare slowGo more n Length of a ring,Right now f=s+nb;( Analyze: Double pointers have gone through a step,然后在环Inside绕圈直到重合,重合hour fast Compare slow Go 环的长度整数Double );
8484
.The above two types are reduced:f=2nb,s=nb,Right nowfastandslow The pointer left separately 2n,n indivual Circumference of the ring (Notice: n yes未知数,不同Linked的情况不同)。
8585

86-
<!--more-->
86+
&lt;!--more--&gt;
8787

8888
2. Current situation analysis:
8989

app/docs/CommunityShare/Leetcode/3072. 将元素分配到两个数组中 II_translated.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ docId: r12u8o7j73oxhbvgphi939fb
3636

3737
<p>&nbsp;</p>
3838

39-
<p><strong class="example">Exemplary example 1:</strong></p>
39+
<p>&lt;strong class="example"&gt;Exemplary example 1:</strong></p>
4040

4141
<pre>
4242
<strong>enter:</strong>nums = [2,1,3,3]
@@ -48,7 +48,7 @@ exist 4 Secondary operation后,arr1 = [2,3] ,arr2 = [1,3] 。
4848
therefore,连接形成的Array result yes [2,3,1,3] 。
4949
</pre>
5050

51-
<p><strong class="example">Exemplary example 2:</strong></p>
51+
<p>&lt;strong class="example"&gt;Exemplary example 2:</strong></p>
5252

5353
<pre>
5454
<strong>enter:</strong>nums = [5,14,3,1,2]
@@ -61,7 +61,7 @@ exist 5 Secondary operation后,arr1 = [5,3,1,2] ,arr2 = [14] 。
6161
therefore,连接形成的Array result yes [5,3,1,2,14] 。
6262
</pre>
6363

64-
<p><strong class="example">Exemplary example 3:</strong></p>
64+
<p>&lt;strong class="example"&gt;Exemplary example 3:</strong></p>
6565

6666
<pre>
6767
<strong>enter:</strong>nums = [3,3,3,3]

app/docs/CommunityShare/Leetcode/538.把二叉搜索树转换为累加树_translated.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ docId: wen0bbo8m93oih1mx6sva9sh
2323
<li>左右子Tree也必须是二叉searchTree。</li>
2424
</ul>
2525

26-
<p><strong>Notice:</strong>This question 1038:&nbsp;<a href="https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree/">https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree/</a> same</p>
26+
<p><strong>Notice:</strong>This question 1038:&nbsp;&lt;a href="https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree/"&gt;https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree/</a> same</p>
2727

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

3030
<p><strong>Exemplary example 1:</strong></p>
3131

32-
<p><strong><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/05/03/tree.png" style="height: 364px; width: 534px;" /></strong></p>
32+
<p><strong>&lt;img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/05/03/tree.png" style="height: 364px; width: 534px;" /&gt;</strong></p>
3333

3434
<pre><strong>enter:</strong>[4,1,6,0,2,5,7,null,null,null,3,null,null,null,8]
3535
<strong>Output:</strong>[30,36,21,36,35,26,15,null,null,null,33,null,null,null,8]

app/docs/CommunityShare/Leetcode/6323. 将钱分给最多的儿童_translated.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Then you must be divided into one that has been divided 8 Dollar的people,ans
3333
他再给另一个people 1 Dollar,so ans constant。
3434

3535
The following isylbExplanation of big guys:(2023-9-22renew)
36-
if money<children,Then there must be children who do not share money,return −1。
36+
if money&lt;children,Then there must be children who do not share money,return −1。
3737

38-
if money>8×children,So children−1 A child obtained 8 Dollar,剩下的一A child obtained money−8×(children−1) Dollar,return children−1。
38+
if money&gt;8×children,So children−1 A child obtained 8 Dollar,剩下的一A child obtained money−8×(children−1) Dollar,return children−1。
3939

4040
if money=8×children−4,So children−2 A child obtained 8 Dollar,The remaining two children sharing the rest 12 Dollar(As long as not 4, 8 Dollar就行),return children−2。
4141

app/docs/CommunityShare/Leetcode/994.腐烂的橘子_translated.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ docId: axhoyzdtxoc82q58j1os57c8
1414
"""
1515

1616
<p>Given&nbsp;<code>m x n</code>&nbsp;grid
17-
<meta charset="UTF-8" />&nbsp;<code>grid</code>&nbsp;middle,Each cell can have one of the following three values:</p>
17+
&lt;meta charset="UTF-8" /&gt;&nbsp;<code>grid</code>&nbsp;middle,Each cell can have one of the following three values:</p>
1818

1919
<ul>
2020
<li>value&nbsp;<code>0</code>&nbsp;Represents the empty unit;</li>
@@ -30,7 +30,7 @@ docId: axhoyzdtxoc82q58j1os57c8
3030

3131
<p><strong>Exemplary example 1:</strong></p>
3232

33-
<p><strong><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/02/16/oranges.png" style="height: 137px; width: 650px;" /></strong></p>
33+
<p><strong>&lt;img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/02/16/oranges.png" style="height: 137px; width: 650px;" /&gt;</strong></p>
3434

3535
<pre>
3636
<strong>enter:</strong>grid = [[2,1,1],[1,1,0],[0,1,1]]

0 commit comments

Comments
 (0)