|
5 | 5 | * You are very welcome to contribute your better solutions. |
6 | 6 |
|
7 | 7 | #####Easy |
8 | | -1.[7. Reverse Integer](https://oj.leetcode.com/problems/reverse-integer/) -[Solution](./Easy/7-reverseInteger.js) |
| 8 | +*[7. Reverse Integer](https://oj.leetcode.com/problems/reverse-integer/) -[Solution](./Easy/7-reverseInteger.js) |
| 9 | +*[8. String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/) -[Solution](./Easy/8-stringToInteger.js) |
| 10 | +*[9. Palindrome Number](https://leetcode.com/problems/palindrome-number/) -[Solution](./Easy/9-palindromeNumber.js) |
| 11 | +*[14. Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/) -[Solution](./Easy/14-longestCommonPrefix.js) |
| 12 | +*[19. Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) -[Solution](./Easy/19-removeNthNodeFromEndofList.js) |
| 13 | +*[21. Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) -[Solution](./Easy/21-mergeSortedLists.js) |
| 14 | +*[28. Implement strStr()](https://leetcode.com/problems/implement-strstr/) -[Solution](./Easy/28-implementstrStr.js) |
| 15 | +*[38. Count and Say](https://leetcode.com/problems/count-and-say/) -[Solution](./Easy/38-countandSay.js) |
9 | 16 |
|
10 | 17 | #####Medium |
11 | | -1.[3. Longest Substring Without Repeating Characters](https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/) -[Solution](./Easy/3-lengthOfLongestSubstring.js) |
12 | | -2.[35. Search Insert Position Characters](https://oj.leetcode.com/problems/search-insert-position/) -[Solution](./Easy/35-searchInsert.js) |
| 18 | +*[3. Longest Substring Without Repeating Characters](https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/) -[Solution](./Easy/3-lengthOfLongestSubstring.js) |
| 19 | +*[35. Search Insert Position Characters](https://oj.leetcode.com/problems/search-insert-position/) -[Solution](./Easy/35-searchInsert.js) |