
组合
文章平均质量分 79
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 241. Different Ways to Add Parentheses(加括号的不同方法)
原题网址:https://leetcode.com/problems/different-ways-to-add-parentheses/Given a string of numbers and operators, return all possible results from computing all the different possible ways to group原创 2016-04-07 02:58:28 · 805 阅读 · 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 77. Combinations(组合)
原题网址:https://leetcode.com/problems/combinations/Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.For example,If n = 4 and k = 2, a solution is:[原创 2016-05-22 05:20:29 · 419 阅读 · 0 评论 -
LeetCode 322. Coin Change(兑换硬币)
原题网址:https://leetcode.com/problems/coin-change/You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you原创 2016-04-25 02:32:12 · 2467 阅读 · 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 93. Restore IP Addresses(恢复IP地址)
原题网址:https://leetcode.com/problems/restore-ip-addresses/Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given "2552551原创 2016-05-23 00:34:59 · 1201 阅读 · 0 评论 -
LeetCode 96. Unique Binary Search Trees(唯一二叉树)
原题网址:https://leetcode.com/problems/unique-binary-search-trees/Given n, how many structurally unique BST's (binary search trees) that store values 1...n?For example,Given n = 3, there are a原创 2016-05-23 00:38:28 · 399 阅读 · 0 评论 -
LeetCode 22. Generate Parentheses(生成括号)
原题网址:https://leetcode.com/problems/generate-parentheses/Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, given n = 3, a sol原创 2016-05-19 07:18:56 · 737 阅读 · 0 评论 -
LeetCode 343. Integer Break(整数分拆)
原题网址:https://leetcode.com/problems/integer-break/Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximu原创 2016-04-30 12:00:37 · 1217 阅读 · 0 评论 -
LeetCode 39. Combination Sum(组合求和)
原题网址:https://leetcode.com/problems/combination-sum/Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The原创 2016-05-20 10:40:51 · 1485 阅读 · 0 评论 -
LeetCode 17. Letter Combinations of a Phone Number(键盘字母)
原题网址:https://leetcode.com/problems/letter-combinations-of-a-phone-number/Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to l原创 2016-05-19 06:14:47 · 505 阅读 · 0 评论 -
LeetCode 277. Find the Celebrity(找名人)
原题网址:https://leetcode.com/problems/find-the-celebrity/Suppose you are at a party with n people (labeled from 0 to n - 1) and among them, there may exist one celebrity. The definition of a cele原创 2016-04-14 01:13:29 · 2448 阅读 · 0 评论 -
LeetCode 282. Expression Add Operators(表达式)
原题网址:https://leetcode.com/problems/expression-add-operators/Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -,原创 2016-04-14 09:11:40 · 1036 阅读 · 0 评论 -
LeetCode 259. 3Sum Smaller(三数值和)
原题网址:https://leetcode.com/problems/3sum-smaller/Given an array of n integers nums and a target, find the number of index triplets i, j, k with 0 that satisfy the condition nums[i] + nums[j]原创 2016-04-09 08:31:17 · 1629 阅读 · 1 评论 -
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 179. Largest Number(最大数)
原题网址:https://leetcode.com/problems/largest-number/Given a list of non negative integers, arrange them such that they form the largest number.For example, given [3, 30, 34, 5, 9], the largest原创 2016-05-25 01:36:20 · 1924 阅读 · 0 评论 -
LeetCode 78. Subsets(子集)
原题网址:https://leetcode.com/problems/subsets/Given a set of distinct integers, nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution se原创 2016-05-22 05:20:40 · 608 阅读 · 0 评论 -
LeetCode 321. Create Maximum Number(寻找最大数)
原题网址:https://leetcode.com/problems/create-maximum-number/Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k from digits of th原创 2016-04-25 02:00:54 · 1997 阅读 · 0 评论 -
LeetCode 216. Combination Sum III(数字之和)
原题网址:https://leetcode.com/problems/combination-sum-iii/Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combinati原创 2016-05-06 04:17:52 · 886 阅读 · 0 评论 -
467. Unique Substrings in Wraparound String
原题网址:https://leetcode.com/problems/unique-substrings-in-wraparound-string/Consider the string s to be the infinite wraparound string of "abcdefghijklmnopqrstuvwxyz", so s will look like this:原创 2016-12-06 05:32:55 · 686 阅读 · 0 评论