leetcode
qq_34139020
这个作者很懒,什么都没留下…
展开
-
Combination Sum
题目描述 Given asetof candidate numbers (candidates)(without duplicates)and a target number (target), find all unique combinations incandidateswhere the candidate numbers sums totarget. Thesame...原创 2019-03-05 10:19:17 · 338 阅读 · 0 评论 -
Sudoku Solver
Write a program to solve a Sudoku puzzle by filling the empty cells. Asudoku solution must satisfyall ofthe following rules: Each of the digits1-9must occur exactlyonce in each row. Each of t...原创 2019-03-02 14:30:21 · 185 阅读 · 0 评论 -
Longest Substring Without Repeating Characters
题目描述: Given a string, find the length of thelongest substringwithout repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Exam...原创 2019-03-08 23:15:09 · 94 阅读 · 0 评论