LeetCode ( C )
小弟有礼了
这个作者很懒,什么都没留下…
展开
-
1. Two Sum
题目: 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 us原创 2017-05-06 22:51:26 · 166 阅读 · 0 评论 -
2. 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 numbers and原创 2017-05-06 23:04:45 · 163 阅读 · 0 评论 -
3. Longest Substring Without Repeating Characters
问题 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 ans转载 2017-05-06 23:31:36 · 258 阅读 · 2 评论