
Leetcode
文章平均质量分 78
Plutoaaa
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Two sum — java
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 el...原创 2018-02-09 21:36:34 · 200 阅读 · 0 评论 -
Add Two Numbers —— java
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 numbers and return i...原创 2018-02-11 10:09:12 · 153 阅读 · 0 评论 -
Longest Substring Without Repeating Characters —— java
Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the length is 3.Given "bbbbb", the answer is "b", with the l...原创 2018-02-11 11:25:32 · 277 阅读 · 0 评论