
LeetCode
文章平均质量分 76
SuAdrenine
我就是我,最璀璨的焰火!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCode系列:1 Two Sum
Q:Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same...原创 2018-11-01 17:49:41 · 170 阅读 · 0 评论 -
LeetCode系列:2 Add Two Numbers
Q:You are given two non-empty linked lists representing two nonnegative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return ...原创 2018-11-05 17:01:59 · 172 阅读 · 0 评论 -
LeetCode系列:3 Longest Substring Without Repeating Characters
Q: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原创 2018-11-16 15:46:49 · 184 阅读 · 0 评论 -
LeetCode系列:4 Median of Two Sorted Arrays
Q:There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assume nums1 and n...原创 2018-12-03 17:43:49 · 172 阅读 · 0 评论