Skip to content

Commit ef2eda1

Browse files
authored
Updated readmes
1 parent fbc98ee commit ef2eda1

File tree

49 files changed

+316
-91
lines changed

Some content is hidden

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

49 files changed

+316
-91
lines changed

src/main/python/g0001_0100/s0001_two_sum/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ You can return the answer in any order.
4040

4141
**Follow-up:** Can you come up with an algorithm that is less than <code>O(n<sup>2</sup>)</code> time complexity?
4242

43-
44-
4543
## Solution
4644

4745
```python

src/main/python/g0001_0100/s0002_add_two_numbers/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ You may assume the two numbers do not contain any leading zero, except the numbe
3737
* `0 <= Node.val <= 9`
3838
* It is guaranteed that the list represents a number that does not have leading zeros.
3939

40-
41-
4240
## Solution
4341

4442
```python

src/main/python/g0001_0100/s0003_longest_substring_without_repeating_characters/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ Given a string `s`, find the length of the **longest substring** without repeati
4242
* <code>0 <= s.length <= 5 * 10<sup>4</sup></code>
4343
* `s` consists of English letters, digits, symbols and spaces.
4444

45-
46-
4745
## Solution
4846

4947
```python

src/main/python/g0001_0100/s0004_median_of_two_sorted_arrays/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ The overall run time complexity should be `O(log (m+n))`.
5252
* `1 <= m + n <= 2000`
5353
* <code>-10<sup>6</sup> <= nums1[i], nums2[i] <= 10<sup>6</sup></code>
5454

55-
56-
5755
## Solution
5856

5957
```python

src/main/python/g0001_0100/s0005_longest_palindromic_substring/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ Given a string `s`, return _the longest palindromic substring_ in `s`.
3636
* `1 <= s.length <= 1000`
3737
* `s` consist of only digits and English letters.
3838

39-
40-
4139
## Solution
4240

4341
```python

src/main/python/g0001_0100/s0006_zigzag_conversion/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ string convert(string s, int numRows);
4141
* `s` consists of English letters (lower-case and upper-case), `','` and `'.'`.
4242
* `1 <= numRows <= 1000`
4343

44-
45-
4644
## Solution
4745

4846
```python

src/main/python/g0001_0100/s0007_reverse_integer/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ Given a signed 32-bit integer `x`, return `x` _with its digits reversed_. If rev
3737

3838
* <code>-2<sup>31</sup> <= x <= 2<sup>31</sup> - 1</code>
3939

40-
41-
4240
## Solution
4341

4442
```python

src/main/python/g0001_0100/s0008_string_to_integer_atoi/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ Since -91283472332 is less than the lower bound of the range [-2<sup>31</sup>, 2
115115
* `0 <= s.length <= 200`
116116
* `s` consists of English letters (lower-case and upper-case), digits (`0-9`), `' '`, `'+'`, `'-'`, and `'.'`.
117117

118-
119-
120118
## Solution
121119

122120
```python

src/main/python/g0001_0100/s0009_palindrome_number/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ An integer is a **palindrome** when it reads the same backward as forward. For e
4343

4444
**Follow up:** Could you solve it without converting the integer to a string?
4545

46-
47-
4846
## Solution
4947

5048
```python

src/main/python/g0001_0100/s0010_regular_expression_matching/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ The matching should cover the **entire** input string (not partial).
5858
* `p` contains only lowercase English letters, `'.'`, and `'*'`.
5959
* It is guaranteed for each appearance of the character `'*'`, there will be a previous valid character to match.
6060

61-
62-
6361
## Solution
6462

6563
```python

0 commit comments

Comments
 (0)