推荐
专栏
教程
课程
飞鹅
本次共找到103条
leetcode
相关的信息
Stella981
•
3年前
Leetcode No.39 组合总和
此文转载自:https://blog.csdn.net/jxq0816/article/details/113079141commentBox一、题目描述给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。candidates 中的数字
Stella981
•
3年前
LeetCode初级算法(数组)解答
这里记录了LeetCode初级算法中数组的一些题目:加一本来想先转成整数,加1后再转回去;耽美想到测试的例子考虑到了这个方法的笨重,所以int类型超了最大范围65536,导致程序出错。classSolution{public:vector<intplusOne(vector<int&digit
Stella981
•
3年前
LeetCode 有效的数独
题目:判断一个数独是否有效,根据:SudokuPuzzlesTheRules(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fsudoku.com.au%2FTheRules.aspx)。数独部分填了数字,空的部分用 '.' 表示。!(http://uploa
Stella981
•
3年前
558. Quad Tree Intersection
https://leetcode.com/problems/quadtreeintersection/description/我觉得是用意挺好的一题目。求两个四叉树的逻辑union,可惜测试用例里面居然包含对题目外因素的检查(那个id)懒得弄了。思路其实挺简单,但是很容易忽略一个edgecase,就是当所有children的value都一致
Stella981
•
3年前
Leetcode 1024. Video Stitching
classSolution:defhelper(self,l,r,clips)int:maxL,maxR0,0iL,iR1,1fori,cinenumerate(clips):ifc0<la
Wesley13
•
3年前
LeetCode 401. Binary Watch
401\.BinaryWatchAbinarywatchhas4LEDsonthetopwhichrepresentthehours(011),andthe6LEDsonthebottomrepresenttheminutes(059).EachLEDr
Stella981
•
3年前
Leetcode 97交错字符
!(https://imgblog.csdnimg.cn/20200707182846168.png?xossprocessimage/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3d3eHkxOTk1,size_16,color_F
Stella981
•
3年前
LeetCode之Weekly Contest 101
前一段时间比较忙,而且做这个对于我来说挺耗时间的,已经间隔了几期的没做总结了,后面有机会补齐。而且本来做这个的目的就是为了防止长时间不做把编程拉下,不在追求独立作出所有题了。以后完赛后稍微尝试下,做不出来的直接放弃。第一题:问题问题:900.RLE迭代器编写一个遍历游程编码序列的迭代器。迭代器由RLEIterator(
Stella981
•
3年前
Leetcode——Substring with Concatenation of All Word
Youaregivenastring, s,andalistofwords, words,thatareallofthesamelength.Findallstartingindicesofsubstring(s)in s thatisaconcatenationofeachwordin words
Stella981
•
3年前
LeetCode 42. 接雨水
给定 _n_ 个非负整数表示每个宽度为1的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。!(https://oscimg.oschina.net/oscnet/b0cc4f8b9a129e159dc6141c019d5b3c043.png)上面是由数组\0,1,0,2,1,0,1,3,2,1,2,1\表示的高度图,在这种情况
1
•••
4
5
6
•••
11