|
1 | 1 | ####LeetCode Solutions in JavaScript |
2 | 2 | * Tried to use optimal solutions as much as I can. Most solutions are from the LeetCode community. |
3 | | -* Written in[Airbnb JavaScript] (https://github.com/airbnb/javascript) style. |
4 | | -* A work in progress. |
| 3 | +* Written in[Airbnb JavaScript] (https://github.com/airbnb/javascript) style. |
| 4 | +* A work in progress. |
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 | +1.[7. Reverse Integer](https://oj.leetcode.com/problems/reverse-integer/) -[Solution](./Easy/7-reverseInteger.js) |
| 9 | + |
| 10 | +#####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) |