Skip to content

Commit b368f46

Browse files
committed
Updated readmes
1 parent fbc98ee commit b368f46

File tree

34 files changed

+334
-25
lines changed

34 files changed

+334
-25
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ You can return the answer in any order.
4141
**Follow-up:** Can you come up with an algorithm that is less than <code>O(n<sup>2</sup>)</code> time complexity?
4242

4343

44-
4544
## Solution
4645

4746
```python

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ You may assume the two numbers do not contain any leading zero, except the numbe
3838
* It is guaranteed that the list represents a number that does not have leading zeros.
3939

4040

41-
4241
## Solution
4342

4443
```python

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ Given a string `s`, find the length of the **longest substring** without repeati
4343
* `s` consists of English letters, digits, symbols and spaces.
4444

4545

46-
4746
## Solution
4847

4948
```python

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

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

5555

56-
5756
## Solution
5857

5958
```python

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ Given a string `s`, return _the longest palindromic substring_ in `s`.
3737
* `s` consist of only digits and English letters.
3838

3939

40-
4140
## Solution
4241

4342
```python

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ string convert(string s, int numRows);
4242
* `1 <= numRows <= 1000`
4343

4444

45-
4645
## Solution
4746

4847
```python

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Given a signed 32-bit integer `x`, return `x` _with its digits reversed_. If rev
3838
* <code>-2<sup>31</sup> <= x <= 2<sup>31</sup> - 1</code>
3939

4040

41-
4241
## Solution
4342

4443
```python

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

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

118118

119-
120119
## Solution
121120

122121
```python

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ An integer is a **palindrome** when it reads the same backward as forward. For e
4444
**Follow up:** Could you solve it without converting the integer to a string?
4545

4646

47-
4847
## Solution
4948

5049
```python

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ The matching should cover the **entire** input string (not partial).
5959
* It is guaranteed for each appearance of the character `'*'`, there will be a previous valid character to match.
6060

6161

62-
6362
## Solution
6463

6564
```python

0 commit comments

Comments
 (0)