Given a string containing only digits, restore it by returning all possible valid IP address combinations. Example: 使用标志k记录当前所得的子字符串个数。当满足有4个子字符串并且s中的 ...
分类:
其他好文 时间:
2019-05-14 12:48:14
阅读次数:
107
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: " ...
分类:
其他好文 时间:
2019-05-13 23:25:05
阅读次数:
133
Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the ...
分类:
编程语言 时间:
2019-05-05 14:41:47
阅读次数:
164
https://leetcode.com/problems/letter combinations of a phone number/ ...
分类:
其他好文 时间:
2019-05-03 09:25:25
阅读次数:
103
Given a set of candidate numbers (`candidates`) (without duplicates) and a target number (`target`), find all unique combinations in `candidates` wh... ...
分类:
其他好文 时间:
2019-04-30 19:53:06
阅读次数:
151
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 ...
分类:
其他好文 时间:
2019-04-29 11:01:27
阅读次数:
122
题目描述:https://leetcode cn.com/problems/letter combinations of a phone number/ 题目描述: 给定一个仅包含数字 的字符串,返回所有它能表示的字母组合。 给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。 示 ...
分类:
其他好文 时间:
2019-04-24 17:37:42
阅读次数:
119
Letter Combinations of a Phone Number 问题简介: 给定包含2-9的数字的字符串,返回该数字可能表示的所有可能的字母组合. 下面给出了数字到字母的映射(就像在电话按钮上一样) 注意:1不会映射到任何字母 解法一: 先将所有数字与对应字符添加到map中,然后遍历给定 ...
分类:
其他好文 时间:
2019-04-22 12:07:09
阅读次数:
137
Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit to l... ...
分类:
其他好文 时间:
2019-04-21 12:59:42
阅读次数:
142
17. Letter Combinations of a Phone Number Medium Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the ...
分类:
其他好文 时间:
2019-04-20 21:34:16
阅读次数:
190