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 · 181 阅读 · 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 · 138 阅读 · 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 · 239 阅读 · 0 评论