
重复
文章平均质量分 70
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 267. Palindrome Permutation II(对称排列)
原题网址:https://leetcode.com/problems/palindrome-permutation-ii/Given a string s, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permut原创 2016-04-11 01:17:09 · 876 阅读 · 0 评论 -
LeetCode 27. Remove Element(删除元素)
原题网址:https://leetcode.com/problems/remove-element/Given an array and a value, remove all instances of that value in place and return the new length.Do not allocate extra space for another ar原创 2016-05-20 10:35:37 · 498 阅读 · 0 评论 -
LeetCode 40. Combination Sum II(组合求和)
原题网址:https://leetcode.com/problems/combination-sum-ii/Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to原创 2016-05-20 10:41:06 · 1500 阅读 · 0 评论 -
LeetCode 47. Permutations II(排列)
原题网址:https://leetcode.com/problems/permutations-ii/Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2] have the followi原创 2016-05-21 05:23:53 · 755 阅读 · 0 评论 -
LeetCode 79. Word Search(单词查找)
原题网址:https://leetcode.com/problems/word-search/Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where原创 2016-05-22 05:21:03 · 1195 阅读 · 0 评论 -
LeetCode 80. Remove Duplicates from Sorted Array II(删除重复)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/Follow up for "Remove Duplicates":What if duplicates are allowed at most twice?For example,Given sorted array nu原创 2016-05-22 05:27:10 · 338 阅读 · 0 评论 -
LeetCode 81. Search in Rotated Sorted Array II(搜索旋转的数组)
原题网址:https://leetcode.com/problems/search-in-rotated-sorted-array-ii/Follow up for "Search in Rotated Sorted Array":What if duplicates are allowed?Would this affect the run-time complexity原创 2016-05-22 05:30:00 · 414 阅读 · 0 评论 -
LeetCode 83. Remove Duplicates from Sorted List(删除重复节点)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-list/Given a sorted linked list, delete all duplicates such that each element appear only once.For example,Given 1->1->2, r原创 2016-05-22 05:36:09 · 503 阅读 · 0 评论 -
LeetCode 90. Subsets II(子集)
原题网址:https://leetcode.com/problems/subsets-ii/Given a collection of integers that might contain duplicates, nums, return all possible subsets.Note:Elements in a subset must be in non-d原创 2016-05-23 00:34:52 · 596 阅读 · 0 评论 -
LeetCode 82. Remove Duplicates from Sorted List II(删除链表中的重复节点)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original原创 2016-05-22 05:32:45 · 707 阅读 · 0 评论 -
LeetCode 358. Rearrange String k Distance Apart(字符间隔)
原题网址:https://leetcode.com/problems/rearrange-string-k-distance-apart/Given a non-empty string str and an integer k, rearrange the string such that the same characters are at least distance k fro原创 2016-06-15 03:27:55 · 5851 阅读 · 0 评论 -
LeetCode 316. Remove Duplicate Letters(删除重复字母)
原题网址:https://leetcode.com/problems/remove-duplicate-letters/Given a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You mus原创 2016-04-23 05:51:58 · 2254 阅读 · 1 评论 -
LeetCode 276. Paint Fence(篱笆涂色)
原题网址:https://leetcode.com/problems/paint-fence/There is a fence with n posts, each post can be painted with one of the k colors.You have to paint all the posts such that no more than two adj原创 2016-04-14 00:48:41 · 1618 阅读 · 0 评论 -
LeetCode 26. Remove Duplicates from Sorted Array(删除重复)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-array/Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.原创 2016-05-20 10:35:30 · 338 阅读 · 0 评论 -
LeetCode 220. Contains Duplicate III(检查重复)
原题网址:https://leetcode.com/problems/contains-duplicate-iii/Given an array of integers, find out whether there are two distinct indices i and j in the array such that the difference between nums[i]原创 2016-05-06 08:32:53 · 1571 阅读 · 0 评论 -
LeetCode 187. Repeated DNA Sequences(重复DNA序列)
原题网址:https://leetcode.com/problems/repeated-dna-sequences/All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is someti原创 2016-05-25 01:35:57 · 637 阅读 · 0 评论 -
LeetCode 287. Find the Duplicate Number(找重复数字)
原题网址:https://leetcode.com/problems/find-the-duplicate-number/Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate nu原创 2016-04-15 07:02:18 · 2994 阅读 · 1 评论 -
LeetCode 288. Unique Word Abbreviation(单词缩写)
原题网址:https://leetcode.com/problems/unique-word-abbreviation/An abbreviation of a word follows the form . Below are some examples of word abbreviations:a) it --> it (no原创 2016-04-15 14:19:44 · 1001 阅读 · 0 评论 -
LeetCode 3. Longest Substring Without Repeating Characters(最长不重复子串)
原题网址:https://leetcode.com/problems/longest-substring-without-repeating-characters/Given a string, find the length of the longest substring without repeating characters.Examples:Given "ab原创 2016-05-01 07:12:41 · 480 阅读 · 0 评论 -
LeetCode 160. Intersection of Two Linked Lists
原题网址:https://leetcode.com/problems/intersection-of-two-linked-lists/Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following原创 2016-05-25 01:41:05 · 463 阅读 · 0 评论 -
LeetCode 159. Longest Substring with At Most Two Distinct Characters(最长字串)
原题网址:https://leetcode.com/problems/longest-substring-with-at-most-two-distinct-characters/Given a string, find the length of the longest substring T that contains at most 2 distinct characters.原创 2016-05-26 00:54:39 · 594 阅读 · 0 评论 -
LeetCode 154. Find Minimum in Rotated Sorted Array II(旋转数组查找)
原题网址:https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/Follow up for "Find Minimum in Rotated Sorted Array":What if duplicates are allowed?Would this affect the run-time原创 2016-05-26 00:57:56 · 482 阅读 · 0 评论 -
LeetCode 301. Remove Invalid Parentheses(删除无效的括号)
原题网址:https://leetcode.com/problems/remove-invalid-parentheses/Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results.Note: The原创 2016-04-19 04:44:37 · 3183 阅读 · 0 评论 -
LeetCode 136. Single Number(单个数字)
原题网址:https://leetcode.com/problems/single-number/Given an array of integers, every element appears twice except for one. Find that single one.Note:Your algorithm should have a linear runti原创 2016-05-27 00:22:39 · 419 阅读 · 0 评论 -
LeetCode 318. Maximum Product of Word Lengths(最大单词长度乘积)
原题网址:https://leetcode.com/problems/maximum-product-of-word-lengths/Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share comm原创 2016-04-23 13:28:40 · 910 阅读 · 1 评论 -
LeetCode 217. Contains Duplicate(检查重复)
原题网址:https://leetcode.com/problems/contains-duplicate/Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in原创 2016-05-06 04:56:24 · 505 阅读 · 0 评论 -
LeetCode 219. Contains Duplicate II(检查重复)
原题网址:https://leetcode.com/problems/contains-duplicate-ii/Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = num原创 2016-05-06 07:16:54 · 416 阅读 · 0 评论 -
LeetCode 373. Find K Pairs with Smallest Sums
原题网址:https://leetcode.com/problems/find-k-pairs-with-smallest-sums/You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.Define a pair (u,v) which consists原创 2016-07-14 00:51:28 · 800 阅读 · 0 评论