Skip to content

Commit 63c960c

Browse files
authored
chore: update lc problem: No.0823 (doocs#1367)
1 parent 5f36fc7 commit 63c960c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

solution/0800-0899/0823.Binary Trees With Factors/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
<p><strong>示例 1:</strong></p>
1818

1919
<pre>
20-
<strong>输入:</strong> <code>arr = [2, 4]</code>
20+
<strong>输入:</strong> arr = [2, 4]
2121
<strong>输出:</strong> 3
22-
<strong>解释:</strong> 可以得到这些二叉树: <code>[2], [4], [4, 2, 2]</code></pre>
22+
<strong>解释:</strong> 可以得到这些二叉树: [2], [4], [4, 2, 2]</pre>
2323

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

2626
<pre>
27-
<strong>输入:</strong> <code>arr = [2, 4, 5, 10]</code>
28-
<strong>输出:</strong> <code>7</code>
29-
<strong>解释:</strong> 可以得到这些二叉树: <code>[2], [4], [5], [10], [4, 2, 2], [10, 2, 5], [10, 5, 2]</code>.</pre>
27+
<strong>输入:</strong> arr = [2, 4, 5, 10]
28+
<strong>输出:</strong> 7
29+
<strong>解释:</strong> 可以得到这些二叉树: [2], [4], [5], [10], [4, 2, 2], [10, 2, 5], [10, 5, 2].</pre>
3030

3131
<p>&nbsp;</p>
3232

solution/0800-0899/0823.Binary Trees With Factors/README_EN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
<pre>
1717
<strong>Input:</strong> arr = [2,4]
1818
<strong>Output:</strong> 3
19-
<strong>Explanation:</strong> We can make these trees: <code>[2], [4], [4, 2, 2]</code></pre>
19+
<strong>Explanation:</strong> We can make these trees: [2], [4], [4, 2, 2]</pre>
2020

2121
<p><strong class="example">Example 2:</strong></p>
2222

2323
<pre>
2424
<strong>Input:</strong> arr = [2,4,5,10]
2525
<strong>Output:</strong> 7
26-
<strong>Explanation:</strong> We can make these trees: <code>[2], [4], [5], [10], [4, 2, 2], [10, 2, 5], [10, 5, 2]</code>.</pre>
26+
<strong>Explanation:</strong> We can make these trees: [2], [4], [5], [10], [4, 2, 2], [10, 2, 5], [10, 5, 2].</pre>
2727

2828
<p>&nbsp;</p>
2929
<p><strong>Constraints:</strong></p>

solution/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
753,
2323
818,
2424
822,
25+
823,
2526
824,
2627
830,
2728
860,

0 commit comments

Comments
 (0)