|
1 | 1 | # Python solutions of LeetCode problems. |
2 | 2 |  |
3 | | - |
| 3 | + |
4 | 4 | [](./LICENSE) |
5 | 5 |  |
6 | 6 | <br><br> |
@@ -44,6 +44,8 @@ In this repository provided my Python solutions of LeetCode problems. |
44 | 44 | |54.|[Spiral Matrix](https://leetcode.com/problems/spiral-matrix/)|[Python](https://github.com/YuriSpiridonov/LeetCode/blob/master/Medium/54.SpiralMatrix.py)|Medium| |
45 | 45 | |55.|[Jump Game](https://leetcode.com/problems/jump-game)|[Python](https://github.com/YuriSpiridonov/30-Day-LeetCoding-Challenge/blob/master/Week%204/JumpGame.py)|Medium| |
46 | 46 | |57.|[Insert Interval](https://leetcode.com/problems/insert-interval/)|[Python](/Hard/57.InsertInterval.py)|Hard| |
| 47 | +|58.|[Length of Last Word](https://leetcode.com/problems/length-of-last-word/)|[Python](/Easy/58.LengthofLastWord(list).py)|Easy|`List`| |
| 48 | +|58.|[Length of Last Word](https://leetcode.com/problems/length-of-last-word/)|[Python](/Easy/58.LengthofLastWord(string).py)|Easy|`String`| |
47 | 49 | |64.|[Minimum Path Sum](https://leetcode.com/problems/minimum-path-sum/)|[Python](https://github.com/YuriSpiridonov/30-Day-LeetCoding-Challenge/blob/master/Week%203/MinimumPathSum.py)|Medium| |
48 | 50 | |66.|[Plus One](https://leetcode.com/problems/plus-one/)|[Python](https://github.com/YuriSpiridonov/LeetCode/blob/master/Easy/66.PlusOne.py)|Easy|| |
49 | 51 | |67.|[Add Binary](https://leetcode.com/problems/add-binary/)|[Python](/Easy/67.AddBinary.py)|Easy|| |
@@ -329,7 +331,7 @@ In this repository provided my Python solutions of LeetCode problems. |
329 | 331 | |1557.|[Minimum Number of Vertices to Reach All Nodes](https://leetcode.com/problems/minimum-number-of-vertices-to-reach-all-nodes/)|[Python](/Medium/1557.MinimumNumberofVerticestoReachAllNodes.py)|Medium|`Set`, kinda Brute Force| |
330 | 332 | |1561.|[Maximum Number of Coins You Can Get](https://leetcode.com/problems/maximum-number-of-coins-you-can-get/)|[Python](/Medium/1561.MaximumNumberofCoinsYouCanGet.py)|Medium|| |
331 | 333 | |1566.|[Detect Pattern of Length M Repeated K or More Times](https://leetcode.com/problems/detect-pattern-of-length-m-repeated-k-or-more-times/)|[Python](/Easy/1566.DetectPatternofLengthMRepeatedKorMoreTimes.py)|Easy|| |
332 | | - |
| 334 | +|1582.|[Special Positions in a Binary Matrix](https://leetcode.com/problems/special-positions-in-a-binary-matrix/)|[Python](/Easy/1582.SpecialPositionsinaBinaryMatrix.py)|Easy|| |
333 | 335 |
|
334 | 336 | <div align="right"> |
335 | 337 | <b><a href="#python-solutions-of-leetcode-problems">Back to Top</a></b> |
|
0 commit comments