上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: 在46的基础上改改就能通过了 https://www.cnblogs.com/mangmangbiluo/p/10154417.html 阅读全文
posted @ 2018-12-21 15:37 茫茫碧落 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 一个数组,里面的数字各不相同,排列出其所有可能 方法很多,能想出来的有: 1,排列所有可能,每出现一种就加入到数组中 2,假设有n个数字,先排列出前n-1数字的可能情况,再将最后一个数字加入 我用的第二种 再精简一下: 阅读全文
posted @ 2018-12-21 10:41 茫茫碧落 阅读(145) 评论(0) 推荐(0) 编辑
摘要: leetcode 44题,题目大意是两个字符串s,p,s是原字符串,p是匹配字符串.匹配字符串中*可以代替任意长度字符串(包括空字符串);?可以视作任意单个字符串,下面是一些示例 采用的方法毫无疑问就是动态规划,(i,j)代表了s前i个字符和p前j个字符是否匹配,我一开始用的是字典: 但是提示说内存 阅读全文
posted @ 2018-12-20 13:49 茫茫碧落 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 很无聊的一道题目歧义也很多 判断一个字符串是否能够用十进制数表示,下面是一堆范例 "0" => true" 0.1 " => true"abc" => false"1 a" => false"2e10" => true" -90e3 " => true" 1e" => fals 阅读全文
posted @ 2018-12-18 17:45 茫茫碧落 阅读(123) 评论(0) 推荐(0) 编辑
摘要: """56. Merge IntervalsMedium1483116FavoriteShareGiven a collection of intervals, merge all overlapping intervals. Example 1: Input: [[1,3],[2,6],[8,10 阅读全文
posted @ 2018-12-12 13:08 茫茫碧落 阅读(130) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/dream_allday/article/details/78338736 anaconda插件连接jsonserver服务出现错误。 解决修改sublime text anaconda默认配置最末尾的参数为"swallow_startup_errors" 阅读全文
posted @ 2018-12-11 19:08 茫茫碧落 阅读(1267) 评论(0) 推荐(0) 编辑
摘要: """42. Trapping Rain WaterHard248947FavoriteShareGiven n non-negative integers representing an elevation map where the width of each bar is 1, compute 阅读全文
posted @ 2018-12-11 14:03 茫茫碧落 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 今天想打开cmd,但是win+r没有效果,找了半天才发现机械键盘有一个等级的物理按钮调控,等级低的时候win键是被禁掉了,把等级调高就行了 阅读全文
posted @ 2018-12-10 10:57 茫茫碧落 阅读(3602) 评论(0) 推荐(0) 编辑
摘要: """93. Restore IP AddressesMedium473177 Given a string containing only digits, restore it by returning all possible valid IP address combinations. Exa 阅读全文
posted @ 2018-12-10 10:46 茫茫碧落 阅读(144) 评论(0) 推荐(0) 编辑
摘要: """32. Longest Valid ParenthesesHard134368 Given a string containing just the characters '(' and ')', find the length of the longest valid (well-forme 阅读全文
posted @ 2018-12-09 18:40 茫茫碧落 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页