- 博客(5)
- 收藏
- 关注
原创 算法日志
无重复字符最长子串 class Solution(object): def lengthOfLongestSubstring(self, s): """ :type s: str :rtype: int """ dd = {} Max = 0 long = 0 L...
2018-09-27 16:21:10 251
原创 算法日记
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers 0, ...
2018-09-22 11:32:16 186
转载 算法日志
题目:给定一组正整数数组A与一个正整数K,求整数数组A中和为K的子序列个数: 例如输入[1,1,1] 输出 2 def countSumK(A,K): count = collections.Counter() rs = 0 count[0] = 1 sub_Sum = 0 for i in range(len(A)): sub_Sum += A[i] rs += count[sub_Sum - ...
2018-09-20 20:16:57 193
转载 算法日记
九月十一日 题目: 求两个整数序列的最长公共子序列长度。如下所示: 输入: A: [1,2,3,2,1,2] B: [3,2,1,4,7] 输出: 3 解释: 最长公共子序列是[3, 2, 1]. 代码: def findmaxsub(A,B): dp = [[0] * (len(B) +...
2018-09-17 15:08:51 201
转载 Linux系统下查看CPU等内核参数命令总结
原博客地址:http://blog.51cto.com/13162375/2091548 以查看CentOS系统信息为例 一:查看CPU less /proc/cpuinfo | grep “model name” (less可以回翻,space翻页,enter下一行;more不可以回翻,space翻页,enter下一行) grep “model name” /proc/cpui...
2018-09-04 15:46:09 2454
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人