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 combination should be ...
分类:
其他好文 时间:
2017-06-24 16:16:24
阅读次数:
107
https://leetcode.com/problems/letter-combinations-of-a-phone-number/#/description ...
分类:
其他好文 时间:
2017-06-22 23:46:53
阅读次数:
177
Given a string containing only digits, restore it by returning all possible valid IP address combinations. For example:Given "25525511135", return ["2 ...
分类:
其他好文 时间:
2017-06-21 00:53:45
阅读次数:
244
Given a set of candidate numbers (C) (without duplicates) and a target number (T), find all unique combinations in C where the candidate numbers sums ...
分类:
其他好文 时间:
2017-06-07 00:49:00
阅读次数:
180
题目: Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. Each ...
分类:
编程语言 时间:
2017-06-05 12:38:29
阅读次数:
182
题目: Given a string containing only digits, restore it by returning all possible valid IP address combinations. For example:Given "25525511135", return ...
分类:
其他好文 时间:
2017-06-05 11:34:32
阅读次数:
149
题目:Given a set of candidate numbers (C) (without duplicates) and a target number (T), find all unique combinations in C where the candidate numbers su ...
分类:
编程语言 时间:
2017-06-05 11:31:24
阅读次数:
148
题目: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set i ...
分类:
编程语言 时间:
2017-06-04 12:53:38
阅读次数:
162
问题描写叙述: 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: [ [2 ...
分类:
其他好文 时间:
2017-05-30 15:42:49
阅读次数:
170
题目: 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: [ [2,4], ...
分类:
其他好文 时间:
2017-05-30 00:35:32
阅读次数:
259