
值得再看一遍
文章平均质量分 67
ForABiggerWorld
这个作者很懒,什么都没留下…
展开
-
1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold
Given am x nmatrixmatand an integerthreshold. Return the maximum side-length of a square with a sum less than or equal tothresholdor return0if there is no such square. Example 1: Inpu...原创 2020-01-31 11:53:36 · 294 阅读 · 0 评论 -
1240. Tiling a Rectangle with the Fewest Squares
Given a rectangle of sizenxm, find the minimum number of integer-sided squares that tile the rectangle. Example 1: Input: n = 2, m = 3 Output: 3 Explanation: 3 squares are necessary to cove...原创 2019-11-02 22:32:31 · 320 阅读 · 0 评论 -
39. Combination Sum && 40. Combination Sum II
Given asetof candidate numbers (candidates)(without duplicates)and a target number (target), find all unique combinations incandidateswhere the candidate numbers sums totarget. Thesamerepeat...原创 2016-11-16 16:43:58 · 342 阅读 · 0 评论 -
133. Clone Graph
Clone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors. OJ's undirected graph serialization: Nodes are labeled uniquely. We use#as a separator for each原创 2016-11-29 22:10:40 · 309 阅读 · 0 评论