#Leetcode

LeetCode Remove Element

删除一个数组中某一特定数值的元素。返回删除后的数组长度。注意点:操作结束后的数字排列顺序不须要与之前同样超出返回长度的部分不须要处理样例:输入:nums[1,2,3,4,3,2,1],val=1输出:5左右两个指针向中间靠拢,左指针找到一个等于val的值,右指针找到第一个不等于val的值。把右指针指向的值赋值给左指针。...
代码星球 ·2020-04-06

[leetcode] Compare Version Numbers

Comparetwoversionnumbersversion1andversion1.Ifversion1>version2return1,ifversion1<version2return-1,otherwisereturn0.Youmayassumethattheversionstringsareno...

Leetcode 221 Maximal Square

classSolution:#@param{character[][]}matrix#@return{integer}defmaximalSquare(self,matrix):ifmatrix==[]:return0m,n=len(matrix),len(matrix[0])dp=[[0]*nforiinrange(...
代码星球 ·2020-04-06

leetcode练习之No.1------ 两数之和Two Sum

github地址:git@github.com:ZQCard/leetcode.git给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。示例:给定nums=[2,7,11,15],target=9因为nums[0]+nums[1]=2+7=9所以返...

leetcode练习之No.7------ 翻转整数reverse_integer

原文地址:http://www.niu12.com/article/48git地址:git@github.com:ZQCard/leetcode.git给定一个32位有符号整数,将整数中的数字进行反转。示例 1:输入:123输出:321 示例2:输入:-123输出:-321示例3:输入:120输出:...

Leetcode_198_House Robber

本文是在学习中的总结。欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/47680663Youareaprofessionalrobberplanningtorobhousesalongastreet.Eachhousehasacertainamount...
代码星球 ·2020-04-06

Leetcode_299_Bulls and Cows

本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/50768550Youareplayingthefollowing BullsandCows gamewithyourfriend:Youwritedownanu...
代码星球 ·2020-04-06

[Leetcode]-Path Sum

Givenabinarytreeandasum,determineifthetreehasaroot-to-leafpathsuchthataddingupallthevaluesalongthepathequalsthegivensum.Forexample:Giventhebelowbinarytreeandsum...
代码星球 ·2020-04-06

【LeetCode-面试算法经典-Java实现】【057-Insert Interval(插入区间)】

  Givenasetofnon-overlappingintervals,insertanewintervalintotheintervals(mergeifnecessary).  Youmayassumethattheintervalswereinitiallysortedaccordingtotheirstar...

leetcode第一刷_Scramble String

字符串的好题。题干解释的很复杂。一下让人不知所措了。这道题究竟是什么意思呢?终于的结果是把一个字符串中字母的顺序打乱了,让你推断一个字符串能不能由还有一个字符串打乱得到。那打乱这个过程是怎么做的呢,非常easy。给你一个字符串,你必须先找一个点把它砍成两半,你能够通过交换这两半的顺序来打乱源字符串的顺序,也就是在两半中...

LeetCode 223 Rectangle Area(矩形面积)

找到在二维平面中两个相交矩形的总面积。每一个矩形都定义了其左下角和右上角的坐标。(矩形例如以下图)如果,总占地面积永远不会超过int的最大值。这题前天试过,写了一堆推断。终究还是无果……贴几个别人的解决方式……intcomputeArea(intA,intB,intC,intD,intE,intF,intG,intH)...

&lt;LeetCode OJ&gt; 20. Valid Parentheses

Givenastringcontainingjustthecharacters '{', ']',determineiftheinputstringisvalid.Thebracketsmustcloseinthecorrectorder, "(]" and&...
代码星球 ·2020-04-06

&lt;LeetCode OJ&gt; 83. Remove Duplicates from Sorted List

83.RemoveDuplicatesfromSortedListTotalAccepted: 94387 TotalSubmissions: 264227 Difficulty: Easy题目意思:如今有一个已经排好顺序的链表,删除全部反复的节点。使每一个节点都仅仅出...

LeetCode Unique Paths

机器人从起点到终点有多少条不同的路径。仅仅能向右或者向下走。注意点:格子大小最大为100*100样例:输入:m=3,n=7输出:28非经常见的小学生奥数题,能够用排列组合来求解,一共要走(m-1)+(n-1)步。当中(m-1)步向下,(n-1)向右。且有公式mCn=n!/m!(n-m)!。那么能够用以下的代码求解:im...
代码星球 ·2020-04-06

leetcode 264: Ugly Number II

UglyNumberIITotalAccepted:2920TotalSubmissions:15174Writeaprogramtofindthen-thuglynumber.Uglynumbersarepositivenumberswhoseprimefactorsonlyinclude2,3,5.Forexamp...
代码星球 ·2020-04-06
首页上一页...3031323334...下一页尾页