
Leetcode
爪蛙没有爪
Think before you leap!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCode- Reverse Integer(JS题解)
Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Output: 321 Example 2: Input: -123 Output: -321 Example 3: Input: 120 Output: 21 Note: Assume we are dealing with ...原创 2019-01-30 17:16:20 · 325 阅读 · 0 评论 -
LeetCode-Add Two Numbers(JS题解)
Add Two Numbers You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two num...原创 2019-01-22 22:08:13 · 268 阅读 · 0 评论 -
LeetCode-Longest Substring Without Repeating Characters(JS题解)
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: Inp原创 2019-01-30 17:18:17 · 171 阅读 · 0 评论