Skip to content

Commit

Permalink
Updated by automated commit 🤖
Browse files Browse the repository at this point in the history
  • Loading branch information
Mo-Shakib committed Jan 31, 2024
1 parent 6bf7ac3 commit 5d0f72d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,39 @@

| # | Title | Solution | Difficulty | Submission Date |
| ----- | ----- | -------- | ---------- | --------------- |
| **26** | [Remove duplicates from sorted array](https://leetcode.com/problems/remove-duplicates-from-sorted-array) | [Python](Python/26.remove-duplicates-from-sorted-array.py) | Easy| 2022-01-05 |
| **997** | [Find the town judge](https://leetcode.com/problems/find-the-town-judge) | [Python](Python/997.find-the-town-judge.py) | Easy| 2022-01-05 |
| **4** | [Median of two sorted arrays](https://leetcode.com/problems/median-of-two-sorted-arrays) | [Python](Python/4.median-of-two-sorted-arrays.py) | Hard| 2022-01-05 |
| **88** | [Merge sorted array](https://leetcode.com/problems/merge-sorted-array) | [Python](Python/88.merge-sorted-array.py) | Easy| 2022-01-05 |
| **14** | [Longest common prefix](https://leetcode.com/problems/longest-common-prefix) | [Python](Python/14.longest-common-prefix.py) | Easy| 2022-01-05 |
| **1** | [Two sum](https://leetcode.com/problems/two-sum) | [Python](Python/1.two-sum.py) | Easy| 2022-01-05 |
| **13** | [Roman to integer](https://leetcode.com/problems/roman-to-integer) | [Python](Python/13.roman-to-integer.py) | Easy| 2022-01-05 |
| **88** | [Merge sorted array](https://leetcode.com/problems/merge-sorted-array) | [Python](Python/88.merge-sorted-array.py) | Easy| 2022-01-05 |
| **997** | [Find the town judge](https://leetcode.com/problems/find-the-town-judge) | [Python](Python/997.find-the-town-judge.py) | Easy| 2022-01-05 |
| **26** | [Remove duplicates from sorted array](https://leetcode.com/problems/remove-duplicates-from-sorted-array) | [Python](Python/26.remove-duplicates-from-sorted-array.py) | Easy| 2022-01-05 |
| **350** | [Intersection of two arrays ii](https://leetcode.com/problems/intersection-of-two-arrays-ii) | [Python](Python/350.intersection-of-two-arrays-ii.py) | Easy| 2022-01-05 |
| **13** | [Roman to integer](https://leetcode.com/problems/roman-to-integer) | [Python](Python/13.roman-to-integer.py) | Easy| 2022-01-05 |
| **4** | [Median of two sorted arrays](https://leetcode.com/problems/median-of-two-sorted-arrays) | [Python](Python/4.median-of-two-sorted-arrays.py) | Hard| 2022-01-05 |
| **9** | [Palindrome number](https://leetcode.com/problems/palindrome-number) | [Python](Python/9.palindrome-number.py) | Easy| 2022-01-05 |
| **14** | [Longest common prefix](https://leetcode.com/problems/longest-common-prefix) | [Python](Python/14.longest-common-prefix.py) | Easy| 2022-01-05 |
| **20** | [Valid parentheses](https://leetcode.com/problems/valid-parentheses) | [Python](Python/20.valid-parentheses.py) | Easy| 2022-01-06 |
| **709** | [To lower case](https://leetcode.com/problems/to-lower-case) | [Python](Python/709.to-lower-case.py) | Easy| 2022-01-06 |
| **2124** | [Check if all as appears before all bs](https://leetcode.com/problems/check-if-all-as-appears-before-all-bs) | [Python](Python/2124.check-if-all-as-appears-before-all-bs.py) | -| 2022-01-06 |
| **11** | [Container with most water](https://leetcode.com/problems/container-with-most-water) | [Python](Python/11.container-with-most-water.py) | Medium| 2022-01-06 |
| **709** | [To lower case](https://leetcode.com/problems/to-lower-case) | [Python](Python/709.to-lower-case.py) | Easy| 2022-01-06 |
| **53** | [Maximum subarray](https://leetcode.com/problems/maximum-subarray) | [Python](Python/53.maximum-subarray.py) | Easy| 2022-01-06 |
| **2124** | [Check if all as appears before all bs](https://leetcode.com/problems/check-if-all-as-appears-before-all-bs) | [Python](Python/2124.check-if-all-as-appears-before-all-bs.py) | -| 2022-01-06 |
| **136** | [Single number](https://leetcode.com/problems/single-number) | [Python](Python/136.single-number.py) | Easy| 2022-01-06 |
| **20** | [Valid parentheses](https://leetcode.com/problems/valid-parentheses) | [Python](Python/20.valid-parentheses.py) | Easy| 2022-01-06 |
| **5960** | [Capitalize the title](https://leetcode.com/problems/capitalize-the-title) | [Python](Python/5960.capitalize-the-title.py) | -| 2022-01-08 |
| **66** | [Plus one](https://leetcode.com/problems/plus-one) | [Python](Python/66.plus-one.py) | Easy| 2022-01-09 |
| **258** | [Add digits](https://leetcode.com/problems/add-digits) | [Python](Python/258.add-digits.py) | Easy| 2022-01-09 |
| **349** | [Intersection of two arrays](https://leetcode.com/problems/intersection-of-two-arrays) | [Python](Python/349.intersection-of-two-arrays.py) | Easy| 2022-01-09 |
| **66** | [Plus one](https://leetcode.com/problems/plus-one) | [Python](Python/66.plus-one.py) | Easy| 2022-01-09 |
| **5976** | [Check if every row and column contains all numbers](https://leetcode.com/problems/check-if-every-row-and-column-contains-all-numbers) | [Python](Python/5976.check-if-every-row-and-column-contains-all-numbers.py) | -| 2022-01-09 |
| **171** | [Excel sheet column number](https://leetcode.com/problems/excel-sheet-column-number) | [Python](Python/171.excel-sheet-column-number.py) | Easy| 2022-01-10 |
| **507** | [Perfect number](https://leetcode.com/problems/perfect-number) | [Python](Python/507.perfect-number.py) | Easy| 2022-01-12 |
| **1486** | [Xor operation in an array](https://leetcode.com/problems/xor-operation-in-an-array) | [Python](Python/1486.xor-operation-in-an-array.py) | -| 2022-01-12 |
| **67** | [Add binary](https://leetcode.com/problems/add-binary) | [Python](Python/67.add-binary.py) | Easy| 2022-01-12 |
| **1486** | [Xor operation in an array](https://leetcode.com/problems/xor-operation-in-an-array) | [Python](Python/1486.xor-operation-in-an-array.py) | -| 2022-01-12 |
| **27** | [Remove element](https://leetcode.com/problems/remove-element) | [Python](Python/27.remove-element.py) | Easy| 2022-01-12 |
| **461** | [Hamming distance](https://leetcode.com/problems/hamming-distance) | [Python](Python/461.hamming-distance.py) | Easy| 2022-01-14 |
| **507** | [Perfect number](https://leetcode.com/problems/perfect-number) | [Python](Python/507.perfect-number.py) | Easy| 2022-01-12 |
| **415** | [Add strings](https://leetcode.com/problems/add-strings) | [Python](Python/415.add-strings.py) | Easy| 2022-01-14 |
| **461** | [Hamming distance](https://leetcode.com/problems/hamming-distance) | [Python](Python/461.hamming-distance.py) | Easy| 2022-01-14 |
| **118** | [Pascals triangle](https://leetcode.com/problems/pascals-triangle) | [Python](Python/118.pascals-triangle.py) | Easy| 2022-01-19 |
| **283** | [Move zeroes](https://leetcode.com/problems/move-zeroes) | [Python](Python/283.move-zeroes.py) | Easy| 2022-01-28 |
| **69** | [Sqrt x](https://leetcode.com/problems/sqrt-x) | [Python](Python/69.sqrt-x.py) | Easy| 2022-04-01 |
| **367** | [Valid perfect square](https://leetcode.com/problems/valid-perfect-square) | [Python](Python/367.valid-perfect-square.py) | Easy| 2022-04-01 |
| **441** | [Arranging coins](https://leetcode.com/problems/arranging-coins) | [Python](Python/441.arranging-coins.py) | Easy| 2022-04-01 |
| **680** | [Valid palindrome ii](https://leetcode.com/problems/valid-palindrome-ii) | [Python](Python/680.valid-palindrome-ii.py) | Easy| 2022-04-02 |
| **367** | [Valid perfect square](https://leetcode.com/problems/valid-perfect-square) | [Python](Python/367.valid-perfect-square.py) | Easy| 2022-04-01 |
| **633** | [Sum of square numbers](https://leetcode.com/problems/sum-of-square-numbers) | [Python](Python/633.sum-of-square-numbers.py) | Easy| 2022-04-02 |
| **680** | [Valid palindrome ii](https://leetcode.com/problems/valid-palindrome-ii) | [Python](Python/680.valid-palindrome-ii.py) | Easy| 2022-04-02 |
| **1952** | [Three divisors](https://leetcode.com/problems/three-divisors) | [Python](Python/1952.three-divisors.py) | -| 2022-04-04 |
| **1461** | [Check if a string contains all binary codes of size k](https://leetcode.com/problems/check-if-a-string-contains-all-binary-codes-of-size-k) | [Python](Python/1461.check-if-a-string-contains-all-binary-codes-of-size-k.py) | -| 2022-05-31 |
30 changes: 15 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,39 @@ <h1>LeetCode Solutions</h1>
<p><a href="https://leetcode.com/">LeetCode</a> is a website containing many algorithm questions. Most of them are real interview questions of Google, Facebook, LinkedIn, Apple, etc. and it always help to sharp our algorithm skills. This repo shows my solutions in Python. Please feel free to reference and STAR to support this repo, thank you!</p>
<p>| # | Title | Solution | Difficulty | Submission Date |
| ----- | ----- | -------- | ---------- | --------------- |
| <strong>26</strong> | <a href="https://leetcode.com/problems/remove-duplicates-from-sorted-array">Remove duplicates from sorted array</a> | <a href="Python/26.remove-duplicates-from-sorted-array.py">Python</a> | Easy| 2022-01-05 |
| <strong>997</strong> | <a href="https://leetcode.com/problems/find-the-town-judge">Find the town judge</a> | <a href="Python/997.find-the-town-judge.py">Python</a> | Easy| 2022-01-05 |
| <strong>4</strong> | <a href="https://leetcode.com/problems/median-of-two-sorted-arrays">Median of two sorted arrays</a> | <a href="Python/4.median-of-two-sorted-arrays.py">Python</a> | Hard| 2022-01-05 |
| <strong>88</strong> | <a href="https://leetcode.com/problems/merge-sorted-array">Merge sorted array</a> | <a href="Python/88.merge-sorted-array.py">Python</a> | Easy| 2022-01-05 |
| <strong>14</strong> | <a href="https://leetcode.com/problems/longest-common-prefix">Longest common prefix</a> | <a href="Python/14.longest-common-prefix.py">Python</a> | Easy| 2022-01-05 |
| <strong>1</strong> | <a href="https://leetcode.com/problems/two-sum">Two sum</a> | <a href="Python/1.two-sum.py">Python</a> | Easy| 2022-01-05 |
| <strong>13</strong> | <a href="https://leetcode.com/problems/roman-to-integer">Roman to integer</a> | <a href="Python/13.roman-to-integer.py">Python</a> | Easy| 2022-01-05 |
| <strong>88</strong> | <a href="https://leetcode.com/problems/merge-sorted-array">Merge sorted array</a> | <a href="Python/88.merge-sorted-array.py">Python</a> | Easy| 2022-01-05 |
| <strong>997</strong> | <a href="https://leetcode.com/problems/find-the-town-judge">Find the town judge</a> | <a href="Python/997.find-the-town-judge.py">Python</a> | Easy| 2022-01-05 |
| <strong>26</strong> | <a href="https://leetcode.com/problems/remove-duplicates-from-sorted-array">Remove duplicates from sorted array</a> | <a href="Python/26.remove-duplicates-from-sorted-array.py">Python</a> | Easy| 2022-01-05 |
| <strong>350</strong> | <a href="https://leetcode.com/problems/intersection-of-two-arrays-ii">Intersection of two arrays ii</a> | <a href="Python/350.intersection-of-two-arrays-ii.py">Python</a> | Easy| 2022-01-05 |
| <strong>13</strong> | <a href="https://leetcode.com/problems/roman-to-integer">Roman to integer</a> | <a href="Python/13.roman-to-integer.py">Python</a> | Easy| 2022-01-05 |
| <strong>4</strong> | <a href="https://leetcode.com/problems/median-of-two-sorted-arrays">Median of two sorted arrays</a> | <a href="Python/4.median-of-two-sorted-arrays.py">Python</a> | Hard| 2022-01-05 |
| <strong>9</strong> | <a href="https://leetcode.com/problems/palindrome-number">Palindrome number</a> | <a href="Python/9.palindrome-number.py">Python</a> | Easy| 2022-01-05 |
| <strong>14</strong> | <a href="https://leetcode.com/problems/longest-common-prefix">Longest common prefix</a> | <a href="Python/14.longest-common-prefix.py">Python</a> | Easy| 2022-01-05 |
| <strong>20</strong> | <a href="https://leetcode.com/problems/valid-parentheses">Valid parentheses</a> | <a href="Python/20.valid-parentheses.py">Python</a> | Easy| 2022-01-06 |
| <strong>709</strong> | <a href="https://leetcode.com/problems/to-lower-case">To lower case</a> | <a href="Python/709.to-lower-case.py">Python</a> | Easy| 2022-01-06 |
| <strong>2124</strong> | <a href="https://leetcode.com/problems/check-if-all-as-appears-before-all-bs">Check if all as appears before all bs</a> | <a href="Python/2124.check-if-all-as-appears-before-all-bs.py">Python</a> | -| 2022-01-06 |
| <strong>11</strong> | <a href="https://leetcode.com/problems/container-with-most-water">Container with most water</a> | <a href="Python/11.container-with-most-water.py">Python</a> | Medium| 2022-01-06 |
| <strong>709</strong> | <a href="https://leetcode.com/problems/to-lower-case">To lower case</a> | <a href="Python/709.to-lower-case.py">Python</a> | Easy| 2022-01-06 |
| <strong>53</strong> | <a href="https://leetcode.com/problems/maximum-subarray">Maximum subarray</a> | <a href="Python/53.maximum-subarray.py">Python</a> | Easy| 2022-01-06 |
| <strong>2124</strong> | <a href="https://leetcode.com/problems/check-if-all-as-appears-before-all-bs">Check if all as appears before all bs</a> | <a href="Python/2124.check-if-all-as-appears-before-all-bs.py">Python</a> | -| 2022-01-06 |
| <strong>136</strong> | <a href="https://leetcode.com/problems/single-number">Single number</a> | <a href="Python/136.single-number.py">Python</a> | Easy| 2022-01-06 |
| <strong>20</strong> | <a href="https://leetcode.com/problems/valid-parentheses">Valid parentheses</a> | <a href="Python/20.valid-parentheses.py">Python</a> | Easy| 2022-01-06 |
| <strong>5960</strong> | <a href="https://leetcode.com/problems/capitalize-the-title">Capitalize the title</a> | <a href="Python/5960.capitalize-the-title.py">Python</a> | -| 2022-01-08 |
| <strong>66</strong> | <a href="https://leetcode.com/problems/plus-one">Plus one</a> | <a href="Python/66.plus-one.py">Python</a> | Easy| 2022-01-09 |
| <strong>258</strong> | <a href="https://leetcode.com/problems/add-digits">Add digits</a> | <a href="Python/258.add-digits.py">Python</a> | Easy| 2022-01-09 |
| <strong>349</strong> | <a href="https://leetcode.com/problems/intersection-of-two-arrays">Intersection of two arrays</a> | <a href="Python/349.intersection-of-two-arrays.py">Python</a> | Easy| 2022-01-09 |
| <strong>66</strong> | <a href="https://leetcode.com/problems/plus-one">Plus one</a> | <a href="Python/66.plus-one.py">Python</a> | Easy| 2022-01-09 |
| <strong>5976</strong> | <a href="https://leetcode.com/problems/check-if-every-row-and-column-contains-all-numbers">Check if every row and column contains all numbers</a> | <a href="Python/5976.check-if-every-row-and-column-contains-all-numbers.py">Python</a> | -| 2022-01-09 |
| <strong>171</strong> | <a href="https://leetcode.com/problems/excel-sheet-column-number">Excel sheet column number</a> | <a href="Python/171.excel-sheet-column-number.py">Python</a> | Easy| 2022-01-10 |
| <strong>507</strong> | <a href="https://leetcode.com/problems/perfect-number">Perfect number</a> | <a href="Python/507.perfect-number.py">Python</a> | Easy| 2022-01-12 |
| <strong>1486</strong> | <a href="https://leetcode.com/problems/xor-operation-in-an-array">Xor operation in an array</a> | <a href="Python/1486.xor-operation-in-an-array.py">Python</a> | -| 2022-01-12 |
| <strong>67</strong> | <a href="https://leetcode.com/problems/add-binary">Add binary</a> | <a href="Python/67.add-binary.py">Python</a> | Easy| 2022-01-12 |
| <strong>1486</strong> | <a href="https://leetcode.com/problems/xor-operation-in-an-array">Xor operation in an array</a> | <a href="Python/1486.xor-operation-in-an-array.py">Python</a> | -| 2022-01-12 |
| <strong>27</strong> | <a href="https://leetcode.com/problems/remove-element">Remove element</a> | <a href="Python/27.remove-element.py">Python</a> | Easy| 2022-01-12 |
| <strong>461</strong> | <a href="https://leetcode.com/problems/hamming-distance">Hamming distance</a> | <a href="Python/461.hamming-distance.py">Python</a> | Easy| 2022-01-14 |
| <strong>507</strong> | <a href="https://leetcode.com/problems/perfect-number">Perfect number</a> | <a href="Python/507.perfect-number.py">Python</a> | Easy| 2022-01-12 |
| <strong>415</strong> | <a href="https://leetcode.com/problems/add-strings">Add strings</a> | <a href="Python/415.add-strings.py">Python</a> | Easy| 2022-01-14 |
| <strong>461</strong> | <a href="https://leetcode.com/problems/hamming-distance">Hamming distance</a> | <a href="Python/461.hamming-distance.py">Python</a> | Easy| 2022-01-14 |
| <strong>118</strong> | <a href="https://leetcode.com/problems/pascals-triangle">Pascals triangle</a> | <a href="Python/118.pascals-triangle.py">Python</a> | Easy| 2022-01-19 |
| <strong>283</strong> | <a href="https://leetcode.com/problems/move-zeroes">Move zeroes</a> | <a href="Python/283.move-zeroes.py">Python</a> | Easy| 2022-01-28 |
| <strong>69</strong> | <a href="https://leetcode.com/problems/sqrt-x">Sqrt x</a> | <a href="Python/69.sqrt-x.py">Python</a> | Easy| 2022-04-01 |
| <strong>367</strong> | <a href="https://leetcode.com/problems/valid-perfect-square">Valid perfect square</a> | <a href="Python/367.valid-perfect-square.py">Python</a> | Easy| 2022-04-01 |
| <strong>441</strong> | <a href="https://leetcode.com/problems/arranging-coins">Arranging coins</a> | <a href="Python/441.arranging-coins.py">Python</a> | Easy| 2022-04-01 |
| <strong>680</strong> | <a href="https://leetcode.com/problems/valid-palindrome-ii">Valid palindrome ii</a> | <a href="Python/680.valid-palindrome-ii.py">Python</a> | Easy| 2022-04-02 |
| <strong>367</strong> | <a href="https://leetcode.com/problems/valid-perfect-square">Valid perfect square</a> | <a href="Python/367.valid-perfect-square.py">Python</a> | Easy| 2022-04-01 |
| <strong>633</strong> | <a href="https://leetcode.com/problems/sum-of-square-numbers">Sum of square numbers</a> | <a href="Python/633.sum-of-square-numbers.py">Python</a> | Easy| 2022-04-02 |
| <strong>680</strong> | <a href="https://leetcode.com/problems/valid-palindrome-ii">Valid palindrome ii</a> | <a href="Python/680.valid-palindrome-ii.py">Python</a> | Easy| 2022-04-02 |
| <strong>1952</strong> | <a href="https://leetcode.com/problems/three-divisors">Three divisors</a> | <a href="Python/1952.three-divisors.py">Python</a> | -| 2022-04-04 |
| <strong>1461</strong> | <a href="https://leetcode.com/problems/check-if-a-string-contains-all-binary-codes-of-size-k">Check if a string contains all binary codes of size k</a> | <a href="Python/1461.check-if-a-string-contains-all-binary-codes-of-size-k.py">Python</a> | -| 2022-05-31 |</p>

0 comments on commit 5d0f72d

Please sign in to comment.