|
11 | 11 | | #Number | Name | Difficulty | Solution | Youtube |
|
12 | 12 | |:--------:|------|:----------:|:--------:|:----------------------:|
|
13 | 13 | | 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | Easy | [](src/TwoSum.java) [](python/two_sum.py) |
|
14 |
| -| 7 | [Reverse Integer](https://leetcode.com/problems/reverse-integer/) | Easy | [](src/ReverseInteger.java) [](python/reverse_integer.py) | |
15 |
| -| 9 | [PalindromeNumber](https://leetcode.com/problems/palindrome-number/) | Easy | [](src/PalindromeNumber.java) [](python/palindrome_number.py) | |
16 |
| -| 13 | [Roman To Integer](https://leetcode.com/problems/roman-to-integer/) | Easy | [](src/RomanToInteger.java) [](python/roman_to_integer.py) | |
17 |
| -| 14 | [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/) | Easy | [](src/LongestCommonPrefix.java) [](python/longest_common_prefix.py) | |
18 |
| -| 20 | [ValidParentheses](https://leetcode.com/problems/valid-parentheses/) | Easy | [](src/ValidParentheses.java) [](python/valid_parentheses.py) | |
19 |
| -| 21 | [Merge 2 Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | Easy | [](src/Merge2SortedLists.java) [](python/merge_2_sorted_lists.py) | |
20 |
| -| 26 | [Remove Duplicates From Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | Easy | [](src/RemoveDuplicatesFromSortedArray.java) [](python/remove_duplicates_from_sorted_array.py) | |
21 |
| -| 27 | [Remove Element](https://leetcode.com/problems/remove-element/) | Easy | [](src/RemoveElement.java) [](python/remove_element.py)| |
22 |
| -| 28 | [Needle in Haystack](https://leetcode.com/problems/implement-strstr) | Easy | [](src/NeedleInHaystack.java) [](python/needle_in_haystack.py) | |
23 |
| -| 35 | [Search Inserted Position](https://leetcode.com/problems/search-insert-position/) | Easy | [](src/SearchInsertPosition.java) [](python/search_insert_position.py) | |
24 |
| -| 38 | [Count and Say](https://leetcode.com/problems/count-and-say) | Medium | [](src/CountAndSay.java) [](python/count_and_say.py) | |
25 |
| -| 53 | [Maximum SubArray](https://leetcode.com/problems/maximum-subarray) | Easy | [](src/MaximumSubArray.java) [](python/maximum_sum_subarray.py) | |
26 |
| -| 58 | [Length of Last Word](https://leetcode.com/problems/length-of-last-word) | Easy | [](src/LengthOfLastWord.java) [](python/length_of_last_word.py) | |
27 |
| -| 66 | [Plus One](https://leetcode.com/problems/plus-one) | Easy | [](src/PlusOne.java) [](python/plus_one.py) | |
28 |
| -| 67 | [Add Binary](https://leetcode.com/problems/add-binary) | Easy | [](src/AddBinary.java) [](python/add_binary.py) | |
29 |
| -| 69 | [Sqrt(x)](https://leetcode.com/problems/sqrtx) | Easy | [](src/Sqrtx.java) [](python/sqrt.py) | |
30 |
| -| 70 | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | Easy | [](src/ClimbingStairs.java) [](python/climbing_stairs.py) | |
31 |
| -| 83 | [Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list) | Easy | [](src/RemoveDuplicatesFromSortedList.java) [](python/remove_duplicates_from_linked_list.py) | |
32 |
| -| 88 | [Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array) | Easy | [](src/MergeSortedArray.java) [](python/merge_sorted_array.py) | |
| 14 | +| 7 | [Reverse Integer](https://leetcode.com/problems/reverse-integer/) | Easy | [](src/ReverseInteger.java) [](python/reverse_integer.py) | |
| 15 | +| 9 | [PalindromeNumber](https://leetcode.com/problems/palindrome-number/) | Easy | [](src/PalindromeNumber.java) [](python/palindrome_number.py) | |
| 16 | +| 13 | [Roman To Integer](https://leetcode.com/problems/roman-to-integer/) | Easy | [](src/RomanToInteger.java) [](python/roman_to_integer.py) | |
| 17 | +| 14 | [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/) | Easy | [](src/LongestCommonPrefix.java) [](python/longest_common_prefix.py) | |
| 18 | +| 20 | [ValidParentheses](https://leetcode.com/problems/valid-parentheses/) | Easy | [](src/ValidParentheses.java) [](python/valid_parentheses.py) | |
| 19 | +| 21 | [Merge 2 Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | Easy | [](src/Merge2SortedLists.java) [](python/merge_2_sorted_lists.py) | |
| 20 | +| 26 | [Remove Duplicates From Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | Easy | [](src/RemoveDuplicatesFromSortedArray.java) [](python/remove_duplicates_from_sorted_array.py) | |
| 21 | +| 27 | [Remove Element](https://leetcode.com/problems/remove-element/) | Easy | [](src/RemoveElement.java) [](python/remove_element.py)| |
| 22 | +| 28 | [Needle in Haystack](https://leetcode.com/problems/implement-strstr) | Easy | [](src/NeedleInHaystack.java) [](python/needle_in_haystack.py) | |
| 23 | +| 35 | [Search Inserted Position](https://leetcode.com/problems/search-insert-position/) | Easy | [](src/SearchInsertPosition.java) [](python/search_insert_position.py) | |
| 24 | +| 38 | [Count and Say](https://leetcode.com/problems/count-and-say) | Medium | [](src/CountAndSay.java) [](python/count_and_say.py) | |
| 25 | +| 53 | [Maximum SubArray](https://leetcode.com/problems/maximum-subarray) | Easy | [](src/MaximumSubArray.java) [](python/maximum_sum_subarray.py) | |
| 26 | +| 58 | [Length of Last Word](https://leetcode.com/problems/length-of-last-word) | Easy | [](src/LengthOfLastWord.java) [](python/length_of_last_word.py) | |
| 27 | +| 66 | [Plus One](https://leetcode.com/problems/plus-one) | Easy | [](src/PlusOne.java) [](python/plus_one.py) | |
| 28 | +| 67 | [Add Binary](https://leetcode.com/problems/add-binary) | Easy | [](src/AddBinary.java) [](python/add_binary.py) | |
| 29 | +| 69 | [Sqrt(x)](https://leetcode.com/problems/sqrtx) | Easy | [](src/Sqrtx.java) [](python/sqrt.py) | |
| 30 | +| 70 | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | Easy | [](src/ClimbingStairs.java) [](python/climbing_stairs.py) | |
| 31 | +| 83 | [Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list) | Easy | [](src/RemoveDuplicatesFromSortedList.java) [](python/remove_duplicates_from_linked_list.py) | |
| 32 | +| 88 | [Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array) | Easy | [](src/MergeSortedArray.java) [](python/merge_sorted_array.py) | |
33 | 33 | | 100 | [Same Tree](https://leetcode.com/problems/same-tree) | Easy | [](src/SameTree.java) [](python/same_tree.py) |
|
34 | 34 | | 101 | [Symmetric Tree](https://leetcode.com/problems/symmetric-tree) | Easy | [](src/SymmetricTree.java) [](python/symmetric_tree.py) |
|
35 | 35 | | 104 | [Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree) | Easy | [](src/MaximumDepthOfBinaryTree.java) [](python/maximum_depth_of_binary_tree.py) |
|
|
0 commit comments