$ xrandrScreen 0: minimum 1 x 1, current 1680 x 900, maximum 8192 x 8192Virtual1 connected primary 1680x900+0+0 (normal left inverted right x axis y a ...
分类:
其他好文 时间:
2019-06-16 11:25:53
阅读次数:
230
Given a string s, find the longest palindromic subsequence's length in s. You may assume that the maximum length of s is 1000. Example 1:Input: Output ...
分类:
其他好文 时间:
2019-06-16 09:23:59
阅读次数:
90
题目如下: Given a matrix consisting of 0s and 1s, we may choose any number of columns in the matrix and flip every cell in that column. Flipping a cell ch ...
分类:
其他好文 时间:
2019-06-15 10:17:21
阅读次数:
82
Shihu Shihu Shihu https://jaminzhang.github.io/linux/understand-Linux-backlog-and-somaxconn-kernel-arguments/ 各参数的含义:https://www.alibabacloud.com/help ...
分类:
系统相关 时间:
2019-06-14 12:20:43
阅读次数:
155
题目描述: Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the fart ...
分类:
其他好文 时间:
2019-06-14 00:46:20
阅读次数:
101
mycode 66.85% 参考 思路和上面是一样的,但是初始化不一样,所以不用单独去考虑列表中都为负数的情况 before用来记录短期的最大和,一旦自身变为了负数,就更新为当前值 res一直要去比较和before的大小,来更新为最大值 ...
分类:
其他好文 时间:
2019-06-10 18:48:16
阅读次数:
107
初识递归 定义 在函数中调用自身函数的函数. 最大递归深度默认是997/998 —— 是python从内存角度出发做得限制 递归的优缺点 如果递归次数太多,就不适合使用递归来解决问题. 优点 会让代码变得简单 缺点 占用内存 ...
分类:
其他好文 时间:
2019-06-10 09:17:42
阅读次数:
77
题目 Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example1: & 8195; Input: "babad ...
分类:
其他好文 时间:
2019-06-09 09:53:14
阅读次数:
114
粘贴自: content属性值 : ? width:可视区域的宽度,值可为数字或关键词device width ? height:同width ? intial scale:页面首次被显示时可视区域的缩放级别,取值1.0则页面按实际尺寸显示,无任何缩放 ? maximum scale=1.0, mi ...
分类:
Web程序 时间:
2019-06-08 18:56:55
阅读次数:
131
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2019-06-07 19:33:47
阅读次数:
97