Skip to content

Commit 0801573

Browse files
authored
Updated readmes
1 parent 2839e71 commit 0801573

File tree

50 files changed

+0
-250
lines changed

Some content is hidden

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

50 files changed

+0
-250
lines changed

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,6 @@ You can return the answer in any order.
4343
## Solution
4444

4545
```php
46-
<?php
47-
48-
namespace leetcode\g0001_0100\s0001_two_sum;
49-
50-
5146
class Solution {
5247
/**
5348
* @param Integer[] $nums

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ You may assume the two numbers do not contain any leading zero, except the numbe
4040
## Solution
4141

4242
```php
43-
<?php
44-
45-
namespace leetcode\g0001_0100\s0002_add_two_numbers;
46-
47-
4843
use leetcode\com_github_leetcode\ListNode;
4944

5045
/**

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ Given a string `s`, find the length of the **longest substring** without repeati
4545
## Solution
4646

4747
```php
48-
<?php
49-
50-
namespace leetcode\g0001_0100\s0003_longest_substring_without_repeating_characters;
51-
52-
5348
class Solution {
5449
/**
5550
* @param String $s

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ The overall run time complexity should be `O(log (m+n))`.
5555
## Solution
5656

5757
```php
58-
<?php
59-
60-
namespace leetcode\g0001_0100\s0004_median_of_two_sorted_arrays;
61-
62-
6358
class Solution {
6459
/**
6560
* @param Integer[] $nums1

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ Given a string `s`, return _the longest palindromic substring_ in `s`.
3939
## Solution
4040

4141
```php
42-
<?php
43-
44-
namespace leetcode\g0001_0100\s0005_longest_palindromic_substring;
45-
46-
4742
class Solution {
4843
/**
4944
* @param String $s

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ string convert(string s, int numRows);
4444
## Solution
4545

4646
```php
47-
<?php
48-
49-
namespace leetcode\g0001_0100\s0006_zigzag_conversion;
50-
51-
5247
class Solution {
5348
/**
5449
* @param String $s

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ Given a signed 32-bit integer `x`, return `x` _with its digits reversed_. If rev
4040
## Solution
4141

4242
```php
43-
<?php
44-
45-
namespace leetcode\g0001_0100\s0007_reverse_integer;
46-
47-
4843
class Solution {
4944
/**
5045
* @param Integer $x

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,6 @@ Since -91283472332 is less than the lower bound of the range [-2<sup>31</sup>, 2
118118
## Solution
119119

120120
```php
121-
<?php
122-
123-
namespace leetcode\g0001_0100\s0008_string_to_integer_atoi;
124-
125-
126121
class Solution {
127122
/**
128123
* @param String $s

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ An integer is a **palindrome** when it reads the same backward as forward. For e
4646
## Solution
4747

4848
```php
49-
<?php
50-
51-
namespace leetcode\g0001_0100\s0009_palindrome_number;
52-
53-
5449
class Solution {
5550
/**
5651
* @param Integer $x

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@ The matching should cover the **entire** input string (not partial).
6161
## Solution
6262

6363
```php
64-
<?php
65-
66-
namespace leetcode\g0001_0100\s0010_regular_expression_matching;
67-
68-
6964
class Solution {
7065
private $cache;
7166

0 commit comments

Comments
 (0)