51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Etc
[leetcode] Compare Version Numbers
Comparetwoversionnumbersversion1andversion1.Ifversion1>version2return1,ifversion1<version2return-1,otherwisereturn0.Youmayassumethattheversionstringsareno...
代码星球
·
2020-04-06
leetcode
Compare
Version
Numbers
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
Maximal
Square
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所以返...
代码星球
·
2020-04-06
leetcode
习之
No.1------
两数
之和
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输出:...
代码星球
·
2020-04-06
leetcode
习之
No.7------
翻转
整数
/etc/skel 目录作用
/etc/skel包含的文件和目录会被自动复制到一个新用户的家目录(当使用useradd程序创建用户时)。/etc/skel允许系统管理员给所有的新用户创建一个默认的家目录,这样所有的新用户都有一样的初始化配置或环境。 https://jaminzhang.github.io/linux/etc-skel-u...
代码星球
·
2020-04-06
etc
skel
目录
作用
git:FETCH_HEAD
FETCH_HEAD:是一个版本链接,记录在本地的一个文件中,指向着目前已经从远程仓库取下来的分支的末端版本。举例说明:将远程origin仓库的xx分支合并到本地的yy分支。gitfetchoriginxxgitcheckoutyygitmergeFETCH_HEAD http://xigua366.itey...
代码星球
·
2020-04-06
git
FETCH
HEAD
org.jsoup.HttpStatusException: HTTP error fetching URL. Status=403
爬取网站的时候 conn=Jsoup.connect(url).timeout(5000).get();直接用get方法,有些网站可以正常爬取。但是有些网站报403错误,403是一种在网站访问的过程中,常见的错误提示。表示资源不可用,服务器理解客户对的请求,但是拒绝处理它,通常由服务器上文件或者目录的权限设置...
代码星球
·
2020-04-06
org.jsoup.HttpStatusException
HTTP
error
fetching
URL.
Leetcode_198_House Robber
本文是在学习中的总结。欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/47680663Youareaprofessionalrobberplanningtorobhousesalongastreet.Eachhousehasacertainamount...
代码星球
·
2020-04-06
Leetcode
House
Robber
Leetcode_299_Bulls and Cows
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/50768550Youareplayingthefollowing BullsandCows gamewithyourfriend:Youwritedownanu...
代码星球
·
2020-04-06
Leetcode
Bulls
and
Cows
[Leetcode]-Path Sum
Givenabinarytreeandasum,determineifthetreehasaroot-to-leafpathsuchthataddingupallthevaluesalongthepathequalsthegivensum.Forexample:Giventhebelowbinarytreeandsum...
代码星球
·
2020-04-06
Leetcode
-Path
Sum
【LeetCode-面试算法经典-Java实现】【057-Insert Interval(插入区间)】
Givenasetofnon-overlappingintervals,insertanewintervalintotheintervals(mergeifnecessary). Youmayassumethattheintervalswereinitiallysortedaccordingtotheirstar...
代码星球
·
2020-04-06
LeetCode-
面试
算法
经典
-Java
leetcode第一刷_Scramble String
字符串的好题。题干解释的很复杂。一下让人不知所措了。这道题究竟是什么意思呢?终于的结果是把一个字符串中字母的顺序打乱了,让你推断一个字符串能不能由还有一个字符串打乱得到。那打乱这个过程是怎么做的呢,非常easy。给你一个字符串,你必须先找一个点把它砍成两半,你能够通过交换这两半的顺序来打乱源字符串的顺序,也就是在两半中...
代码星球
·
2020-04-06
leetcode
第一
Scramble
String
LeetCode 223 Rectangle Area(矩形面积)
找到在二维平面中两个相交矩形的总面积。每一个矩形都定义了其左下角和右上角的坐标。(矩形例如以下图)如果,总占地面积永远不会超过int的最大值。这题前天试过,写了一堆推断。终究还是无果……贴几个别人的解决方式……intcomputeArea(intA,intB,intC,intD,intE,intF,intG,intH)...
代码星球
·
2020-04-06
LeetCode
Rectangle
Area
矩形
面积
<LeetCode OJ> 20. Valid Parentheses
Givenastringcontainingjustthecharacters '{', ']',determineiftheinputstringisvalid.Thebracketsmustcloseinthecorrectorder, "(]" and&...
代码星球
·
2020-04-06
Valid
Parentheses
<LeetCode OJ> 83. Remove Duplicates from Sorted List
83.RemoveDuplicatesfromSortedListTotalAccepted: 94387 TotalSubmissions: 264227 Difficulty: Easy题目意思:如今有一个已经排好顺序的链表,删除全部反复的节点。使每一个节点都仅仅出...
代码星球
·
2020-04-06
Remove
Duplicates
from
Sorted
List
首页
上一页
...
50
51
52
53
54
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他