|
5 | 5 | | # | Title | Solution | Difficulty |
|
6 | 6 | |---| ----- | -------- | ---------- |
|
7 | 7 | |1|[Two Sum](https://leetcode.com/problems/two-sum/)| [JavaScript](./algorithms/TwoSum.js)|Easy|
|
8 |
| -|2|[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/)| [JavaScript](./algorithms/Add Two Numbers.js)|Medium| |
9 |
| -|3|[Longest Substring](https://leetcode.com/problems/longest-substring-without-repeating-characters/)| [JavaScript](./algorithms/Longest Substring.js)|Medium| |
10 |
| -|5|[Longest Palindromic](https://leetcode.com/problems/longest-palindromic-substring/)| [JavaScript](./algorithms/Longest Palindromic.js)|Medium| |
11 |
| -|6|[ZigZag Conversion](https://leetcode.com/problems/zigzag-conversion/)| [JavaScript](./algorithms/ZigZag Conversion.js)|Easy| |
12 |
| -|7|[Reverse Integer](https://leetcode.com/problems/reverse-integer/)| [JavaScript](./algorithms/Reverse Integer.js)|Easy| |
13 |
| -|8|[String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/)| [JavaScript](./algorithms/String to Integer (atoi).js)|Easy| |
14 |
| -|9|[Palindrome Number](https://leetcode.com/problems/palindrome-number/)| [JavaScript](./algorithms/Palindrome Number.js)|Easy| |
15 |
| -|11|[Container With Most Water](https://leetcode.com/problems/container-with-most-water/)| [JavaScript](./algorithms/Container With Most Water.js)|Medium| |
16 |
| -|12|[Integer to Roman](https://leetcode.com/problems/integer-to-roman/)| [JavaScript](./algorithms/Integer to Roman.js)|Medium| |
17 |
| -|13|[Roman to Integer](https://leetcode.com/problems/roman-to-integer/)| [JavaScript](./algorithms/Roman to Integer.js)|Easy| |
18 |
| -|14|[Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/)| [JavaScript](./algorithms/Longest Common Prefix.js)|Easy| |
| 8 | +|2|[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/)| [JavaScript](./algorithms/Add_Two_Numbers.js)|Medium| |
| 9 | +|3|[Longest Substring](https://leetcode.com/problems/longest-substring-without-repeating-characters/)| [JavaScript](./algorithms/Longest_Substring.js)|Medium| |
| 10 | +|5|[Longest Palindromic](https://leetcode.com/problems/longest-palindromic-substring/)| [JavaScript](./algorithms/Longest_Palindromic.js)|Medium| |
| 11 | +|6|[ZigZag Conversion](https://leetcode.com/problems/zigzag-conversion/)| [JavaScript](./algorithms/ZigZag_Conversion.js)|Easy| |
| 12 | +|7|[Reverse Integer](https://leetcode.com/problems/reverse-integer/)| [JavaScript](./algorithms/Reverse_Integer.js)|Easy| |
| 13 | +|8|[String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/)| [JavaScript](./algorithms/String_to_Integer(atoi).js)|Easy| |
| 14 | +|9|[Palindrome Number](https://leetcode.com/problems/palindrome-number/)| [JavaScript](./algorithms/Palindrome_Number.js)|Easy| |
| 15 | +|11|[Container With Most Water](https://leetcode.com/problems/container-with-most-water/)| [JavaScript](./algorithms/Container_With_Most_Water.js)|Medium| |
| 16 | +|12|[Integer to Roman](https://leetcode.com/problems/integer-to-roman/)| [JavaScript](./algorithms/Integer_to_Roman.js)|Medium| |
| 17 | +|13|[Roman to Integer](https://leetcode.com/problems/roman-to-integer/)| [JavaScript](./algorithms/Roman_to_Integer.js)|Easy| |
| 18 | +|14|[Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/)| [JavaScript](./algorithms/Longest Common_Prefix.js)|Easy| |
19 | 19 | |15|[3Sum](https://leetcode.com/problems/3sum/)| [JavaScript](./algorithms/3Sum.js)|Medium|
|
20 |
| -|16|[3Sum Closest](https://leetcode.com/problems/3sum-closest/)| [JavaScript](./algorithms/3Sum Closest.js)|Medium| |
21 |
| -|17|[Letter Combinations of a Phone Number](https://leetcode.com/problems/letter-combinations-of-a-phone-number/)| [JavaScript](./algorithms/Letter Combinations of a Phone Number.js)|Medium| |
| 20 | +|16|[3Sum_Closest](https://leetcode.com/problems/3sum-closest/)| [JavaScript](./algorithms/3Sum Closest.js)|Medium| |
| 21 | +|17|[Letter Combinations of a Phone Number](https://leetcode.com/problems/letter-combinations-of-a-phone-number/)| [JavaScript](./algorithms/Letter_Combinations_of_a_Phone_Number.js)|Medium| |
22 | 22 | |18|[4Sum](https://leetcode.com/problems/4sum/)| [JavaScript](./algorithms/4Sum.js)|Medium|
|
23 |
| -|19|[Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)| [JavaScript](./algorithms/Remove Nth Node From End of List.js)|Easy| |
24 |
| -|20|[Valid Parentheses](https://leetcode.com/problems/valid-parentheses/)| [JavaScript](./algorithms/Valid Parentheses.js)|Easy| |
25 |
| -|21|[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/)| [JavaScript](./algorithms/Merge Two Sorted Lists.js)|Easy| |
| 23 | +|19|[Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)| [JavaScript](./algorithms/Remove_Nth_Node_From_End_of_List.js)|Easy| |
| 24 | +|20|[Valid Parentheses](https://leetcode.com/problems/valid-parentheses/)| [JavaScript](./algorithms/Valid_Parentheses.js)|Easy| |
| 25 | +|21|[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/)| [JavaScript](./algorithms/Merge_Two_Sorted_Lists.js)|Easy| |
26 | 26 | |22|[Generate Parentheses](https://leetcode.com/problems/generate-parentheses/)| [JavaScript](./algorithms/Generate Parentheses.js)|Medium|
|
27 |
| -|24|[Swap Nodes in Pairs](https://leetcode.com/problems/swap-nodes-in-pairs/)| [JavaScript](./algorithms/Swap Nodes in Pairs.js)|Easy| |
28 |
| -|26|[Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/)| [JavaScript](./algorithms/Remove Duplicates from Sorted Array.js)|Easy| |
29 |
| -|27|[Remove Element](https://leetcode.com/problems/remove-element/)| [JavaScript](./algorithms/Remove Element.js)|Easy| |
30 |
| -|28|[Implement strStr()](https://leetcode.com/problems/implement-strstr/)| [JavaScript](./algorithms/Implement strStr().js)|Easy| |
31 |
| -|29|[Divide Two Integers](https://leetcode.com/problems/divide-two-integers/)| [JavaScript](./algorithms/Divide Two Integers.js)|Medium| |
32 |
| -|31|[Next Permutation](https://leetcode.com/problems/next-permutation/)| [JavaScript](./algorithms/Next Permutation.js)|Medium| |
33 |
| -|34|[Search for a Range](https://leetcode.com/problems/search-for-a-range/)| [JavaScript](./algorithms/Search for a Range.js)|Medium| |
34 |
| -|35|[Search Insert Position](https://leetcode.com/problems/search-insert-position/)| [JavaScript](./algorithms/Search Insert Position.js)|Medium| |
35 |
| -|36|[Valid Sudoku](https://leetcode.com/problems/valid-sudoku/)| [JavaScript](./algorithms/Valid Sudoku.js)|Easy| |
36 |
| -|38|[Count and Say](https://leetcode.com/problems/count-and-say/)| [JavaScript](./algorithms/Count and Say.js)|Easy| |
37 |
| -|39|[Combination Sum](https://leetcode.com/problems/combination-sum/)| [JavaScript](./algorithms/Combination Sum.js)|Medium| |
38 |
| -|40|[Combination Sum II](https://leetcode.com/problems/combination-sum-ii/)| [JavaScript](./algorithms/Combination Sum II.js)|Medium| |
39 |
| -|43|[Multiply Strings](https://leetcode.com/problems/multiply-strings/)| [JavaScript](./algorithms/Multiply Strings.js)|Medium| |
| 27 | +|24|[Swap Nodes in Pairs](https://leetcode.com/problems/swap-nodes-in-pairs/)| [JavaScript](./algorithms/Swap_Nodes_in_Pairs.js)|Easy| |
| 28 | +|26|[Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/)| [JavaScript](./algorithms/Remove_Duplicates_from_Sorted_Array.js)|Easy| |
| 29 | +|27|[Remove Element](https://leetcode.com/problems/remove-element/)| [JavaScript](./algorithms/Remove_Element.js)|Easy| |
| 30 | +|28|[Implement strStr()](https://leetcode.com/problems/implement-strstr/)| [JavaScript](./algorithms/Implement_strStr().js)|Easy| |
| 31 | +|29|[Divide Two Integers](https://leetcode.com/problems/divide-two-integers/)| [JavaScript](./algorithms/Divide_Two_Integers.js)|Medium| |
| 32 | +|31|[Next Permutation](https://leetcode.com/problems/next-permutation/)| [JavaScript](./algorithms/Next_Permutation.js)|Medium| |
| 33 | +|34|[Search for a Range](https://leetcode.com/problems/search-for-a-range/)| [JavaScript](./algorithms/Search_for_a_Range.js)|Medium| |
| 34 | +|35|[Search Insert Position](https://leetcode.com/problems/search-insert-position/)| [JavaScript](./algorithms/Search_Insert_Position.js)|Medium| |
| 35 | +|36|[Valid Sudoku](https://leetcode.com/problems/valid-sudoku/)| [JavaScript](./algorithms/Valid_Sudoku.js)|Easy| |
| 36 | +|38|[Count and Say](https://leetcode.com/problems/count-and-say/)| [JavaScript](./algorithms/Count_and_Say.js)|Easy| |
| 37 | +|39|[Combination Sum](https://leetcode.com/problems/combination-sum/)| [JavaScript](./algorithms/Combination_Sum.js)|Medium| |
| 38 | +|40|[Combination Sum II](https://leetcode.com/problems/combination-sum-ii/)| [JavaScript](./algorithms/Combination_Sum_II.js)|Medium| |
| 39 | +|43|[Multiply Strings](https://leetcode.com/problems/multiply-strings/)| [JavaScript](./algorithms/Multiply_Strings.js)|Medium| |
40 | 40 | |46|[Permutations](https://leetcode.com/problems/permutations/)| [JavaScript](./algorithms/Permutations.js)|Medium|
|
41 | 41 | |69|[Sqrt(x)](https://leetcode.com/problems/sqrtx/)| [JavaScript](./algorithms/Sqrt(x).js)|Easy|
|
42 |
| -|371|[Sum of Two Integers](https://leetcode.com/problems/sum-of-two-integers/)| [JavaScript](./algorithms/Sum of Two Integers.js)|Easy| |
| 42 | +|371|[Sum of Two Integers](https://leetcode.com/problems/sum-of-two-integers/)| [JavaScript](./algorithms/Sum_of_Two_Integers.js)|Easy| |
43 | 43 | |372|[Super Pow](https://leetcode.com/problems/super-pow/)| [JavaScript](./algorithms/SuperPow.js)|Medium|
|
0 commit comments