自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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关注的人

提示
确定要删除当前文章?
取消 删除