|
1 | 1 | # Leetcode Algorithms
|
2 | 2 |
|
3 |
| - |
| 3 | + |
4 | 4 | 
|
5 | 5 | 
|
6 | 6 | [](CONTRIBUTING.md)
|
7 | 7 |
|
8 | 8 | ## Problems
|
9 | 9 | | # Number | Name | Difficulty | Solution |
|
10 | 10 | |:--------:|------|:----------:|:--------:|
|
11 |
| -| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/TwoSum.java) | |
12 |
| -| 7 | [Reverse Integer](https://leetcode.com/problems/reverse-integer/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ReverseInteger.java) | |
13 |
| -| 9 | [PalindromeNumber](https://leetcode.com/problems/palindrome-number/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/PalindromeNumber.java) | |
14 |
| -| 13 | [Roman To Integer](https://leetcode.com/problems/roman-to-integer/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/RomanToInteger.java) | |
15 |
| -| 14 | [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/LongestCommonPrefix.java) | |
16 |
| -| 20 | [ValidParentheses](https://leetcode.com/problems/valid-parentheses/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ValidParentheses.java) | |
17 |
| -| 21 | [Merge 2 Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/Merge2SortedLists.java) | |
18 |
| -| 26 | [Remove Duplicates From Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/RemoveDuplicatesFromSortedArray.java) | |
19 |
| -| 27 | [Remove Element](https://leetcode.com/problems/remove-element/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/RemoveElement.java) [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/python/remove_element.py)| |
20 |
| -| 28 | [Needle in Haystack](https://leetcode.com/problems/implement-strstr) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/NeedleInHaystack.java) [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/python/needle_in_haystack.py) | |
21 |
| -| 35 | [Search Inserted Position](https://leetcode.com/problems/search-insert-position/) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/SearchInsertPosition.java) | |
22 |
| -| 38 | [Count and Say](https://leetcode.com/problems/count-and-say) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/CountAndSay.java) | |
23 |
| -| 53 | [Maximum SubArray](https://leetcode.com/problems/maximum-subarray) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/MaximumSubArray.java) | |
24 |
| -| 58 | [Length of Last Word](https://leetcode.com/problems/length-of-last-word) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/LengthOfLastWord.java) | |
25 |
| -| 66 | [Plus One](https://leetcode.com/problems/plus-one) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/PlusOne.java) | |
26 |
| -| 67 | [Add Binary](https://leetcode.com/problems/add-binary) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/AddBinary.java) | |
27 |
| -| 69 | [Sqrt(x)](https://leetcode.com/problems/sqrtx) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/Sqrtx.java) | |
28 |
| -| 70 | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ClimbingStairs.java) | |
| 11 | +| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | Easy | [](src/TwoSum.java) [](python/two_sum.py) | |
| 12 | +| 7 | [Reverse Integer](https://leetcode.com/problems/reverse-integer/) | Easy | [](src/ReverseInteger.java) | |
| 13 | +| 9 | [PalindromeNumber](https://leetcode.com/problems/palindrome-number/) | Easy | [](src/PalindromeNumber.java) | |
| 14 | +| 13 | [Roman To Integer](https://leetcode.com/problems/roman-to-integer/) | Easy | [](src/RomanToInteger.java) | |
| 15 | +| 14 | [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/) | Easy | [](src/LongestCommonPrefix.java) | |
| 16 | +| 20 | [ValidParentheses](https://leetcode.com/problems/valid-parentheses/) | Easy | [](src/ValidParentheses.java) | |
| 17 | +| 21 | [Merge 2 Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | Easy | [](src/Merge2SortedLists.java) | |
| 18 | +| 26 | [Remove Duplicates From Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | Easy | [](src/RemoveDuplicatesFromSortedArray.java) | |
| 19 | +| 27 | [Remove Element](https://leetcode.com/problems/remove-element/) | Easy | [](src/RemoveElement.java) [](python/remove_element.py)| |
| 20 | +| 28 | [Needle in Haystack](https://leetcode.com/problems/implement-strstr) | Easy | [](src/NeedleInHaystack.java) [](python/needle_in_haystack.py) | |
| 21 | +| 35 | [Search Inserted Position](https://leetcode.com/problems/search-insert-position/) | Easy | [](src/SearchInsertPosition.java) | |
| 22 | +| 38 | [Count and Say](https://leetcode.com/problems/count-and-say) | Easy | [](src/CountAndSay.java) | |
| 23 | +| 53 | [Maximum SubArray](https://leetcode.com/problems/maximum-subarray) | Easy | [](src/MaximumSubArray.java) | |
| 24 | +| 58 | [Length of Last Word](https://leetcode.com/problems/length-of-last-word) | Easy | [](src/LengthOfLastWord.java) | |
| 25 | +| 66 | [Plus One](https://leetcode.com/problems/plus-one) | Easy | [](src/PlusOne.java) | |
| 26 | +| 67 | [Add Binary](https://leetcode.com/problems/add-binary) | Easy | [](src/AddBinary.java) | |
| 27 | +| 69 | [Sqrt(x)](https://leetcode.com/problems/sqrtx) | Easy | [](src/Sqrtx.java) | |
| 28 | +| 70 | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | Easy | [](src/ClimbingStairs.java) | |
29 | 29 | | 83 | [Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/RemoveDuplicatesFromSortedList.java) |
|
30 | 30 | | 88 | [Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/MergeSortedArray.java) |
|
31 | 31 | | 100 | [Same Tree](https://leetcode.com/problems/same-tree) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/SameTree.java) |
|
|
0 commit comments