Skip to content

Commit 77e6126

Browse files
committed
style: update problems description
1 parent 4bfc92d commit 77e6126

File tree

232 files changed

+0
-920
lines changed

Some content is hidden

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

232 files changed

+0
-920
lines changed

index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
'/','/solution/','/lcof/','/lcci/', '/basic/'
3737
],
3838
auto2top: true,
39-
loadSidebar: 'summary.md',
4039
subMaxLevel: 2,
4140
alias: {
4241
'/lcci/.*/summary.md': '/lcci/summary.md',

solution/0000-0099/0020.Valid Parentheses/README_EN.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@
99
<p>An input string is valid if:</p>
1010

1111
<ol>
12-
1312
<li>Open brackets must be closed by the same type of brackets.</li>
14-
1513
<li>Open brackets must be closed in the correct order.</li>
16-
1714
</ol>
1815

1916
<p>Note that an empty string is&nbsp;also considered valid.</p>

solution/0000-0099/0036.Valid Sudoku/README_EN.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,9 @@
77
<p>Determine if a&nbsp;9x9 Sudoku board&nbsp;is valid.&nbsp;Only the filled cells need to be validated&nbsp;<strong>according to the following rules</strong>:</p>
88

99
<ol>
10-
1110
<li>Each row&nbsp;must contain the&nbsp;digits&nbsp;<code>1-9</code> without repetition.</li>
12-
1311
<li>Each column must contain the digits&nbsp;<code>1-9</code>&nbsp;without repetition.</li>
14-
1512
<li>Each of the 9 <code>3x3</code> sub-boxes of the grid must contain the digits&nbsp;<code>1-9</code>&nbsp;without repetition.</li>
16-
1713
</ol>
1814

1915
<p><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Sudoku-by-L2G-20050714.svg/250px-Sudoku-by-L2G-20050714.svg.png" style="height:250px; width:250px" /><br />

solution/0000-0099/0037.Sudoku Solver/README_EN.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,9 @@
99
<p>A&nbsp;sudoku solution must satisfy <strong>all of&nbsp;the following rules</strong>:</p>
1010

1111
<ol>
12-
1312
<li>Each of the digits&nbsp;<code>1-9</code> must occur exactly&nbsp;once in each row.</li>
14-
1513
<li>Each of the digits&nbsp;<code>1-9</code>&nbsp;must occur&nbsp;exactly once in each column.</li>
16-
1714
<li>Each of the the digits&nbsp;<code>1-9</code> must occur exactly once in each of the 9 <code>3x3</code> sub-boxes of the grid.</li>
18-
1915
</ol>
2016

2117
<p>Empty cells are indicated by the character <code>&#39;.&#39;</code>.</p>

solution/0000-0099/0043.Multiply Strings/README_EN.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,10 @@
2727
<p><strong>Note:</strong></p>
2828

2929
<ol>
30-
3130
<li>The length of both <code>num1</code> and <code>num2</code> is &lt; 110.</li>
32-
3331
<li>Both <code>num1</code> and <code>num2</code> contain&nbsp;only digits <code>0-9</code>.</li>
34-
3532
<li>Both <code>num1</code> and <code>num2</code>&nbsp;do not contain any leading zero, except the number 0 itself.</li>
36-
3733
<li>You <strong>must not use any built-in BigInteger library</strong> or <strong>convert the inputs to integer</strong> directly.</li>
38-
3934
</ol>
4035

4136
## Solutions

solution/0000-0099/0060.Permutation Sequence/README_EN.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,12 @@
99
<p>By listing and labeling all of the permutations in order, we get the following sequence for <em>n</em> = 3:</p>
1010

1111
<ol>
12-
1312
<li><code>&quot;123&quot;</code></li>
14-
1513
<li><code>&quot;132&quot;</code></li>
16-
1714
<li><code>&quot;213&quot;</code></li>
18-
1915
<li><code>&quot;231&quot;</code></li>
20-
2116
<li><code>&quot;312&quot;</code></li>
22-
2317
<li><code>&quot;321&quot;</code></li>
24-
2518
</ol>
2619

2720
<p>Given <em>n</em> and <em>k</em>, return the <em>k</em><sup>th</sup> permutation sequence.</p>

solution/0000-0099/0072.Edit Distance/README_EN.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,9 @@
99
<p>You have the following 3 operations permitted on a word:</p>
1010

1111
<ol>
12-
1312
<li>Insert a character</li>
14-
1513
<li>Delete a character</li>
16-
1714
<li>Replace a character</li>
18-
1915
</ol>
2016

2117
<p><strong>Example 1:</strong></p>

solution/0100-0199/0165.Compare Version Numbers/README_EN.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ If <code><em>version1</em> &gt; <em>version2</em></code> return <code>1;</code>&
6969
<ol>
7070

7171
<li>Version strings are composed of numeric strings separated by dots <code>.</code> and this numeric strings <strong>may</strong> have leading zeroes. </li>
72-
7372
<li>Version strings do not start or end with dots, and they will not be two consecutive dots.</li>
7473

7574
</ol>

solution/0100-0199/0192.Word Frequency/README_EN.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ day 1
4545
<ul>
4646
<li>Don&#39;t worry about handling ties, it is guaranteed that each word&#39;s frequency count is unique.</li>
4747
<li>Could you write it in one-line using <a href="http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-4.html">Unix pipes</a>?</li>
48-
4948
</ul>
5049

5150
## Solutions

solution/0200-0299/0210.Course Schedule II/README_EN.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,8 @@
4141
<p><strong>Note:</strong></p>
4242

4343
<ol>
44-
4544
<li>The input prerequisites is a graph represented by <strong>a list of edges</strong>, not adjacency matrices. Read more about <a href="https://www.khanacademy.org/computing/computer-science/algorithms/graph-representation/a/representing-graphs" target="_blank">how a graph is represented</a>.</li>
46-
4745
<li>You may assume that there are no duplicate edges in the input prerequisites.</li>
48-
4946
</ol>
5047

5148
## Solutions

0 commit comments

Comments
 (0)