上一页 1 ··· 119 120 121 122 123 124 125 126 127 ··· 271 下一页
摘要: source code: output: ****************************************************************************************[FreqSequence(sequence=[['a']], freq=4), 阅读全文
posted @ 2019-04-23 12:06 bonelee 阅读(631) 评论(0) 推荐(0) 编辑
摘要: download JDK 8, extract and add to .bashrc: export JAVA_HOME=/home/bonelee/jdk1.8.0_211export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATHexpor 阅读全文
posted @ 2019-04-23 11:58 bonelee 阅读(803) 评论(0) 推荐(0) 编辑
摘要: 给定一个字符串所表示的括号序列,包含以下字符: '(', ')', '{', '}', '[' and ']', 判定是否是有效的括号序列。 括号必须依照 "()" 顺序表示, "()[]{}" 是有效的括号,但 "([)]" 则是无效的括号。 给定一个字符串所表示的括号序列,包含以下字符: '(' 阅读全文
posted @ 2019-04-20 11:27 bonelee 阅读(495) 评论(2) 推荐(0) 编辑
摘要: 在本题中,每个大写字母代表从“0”到“f”的一些十六进制数字。 红绿蓝三元色#AABBCC可以简写为#ABC。 例如,#15c是颜色#1155cc的简写。 现在,假设两种颜色#ABCDEF和#UVWXYZ之间的相似性是-(AB - UV) ^ 2 - (CD - WX) ^ 2 - (EF - YZ 阅读全文
posted @ 2019-04-20 10:55 bonelee 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: 如果一个正整数的十进制表示(没有前导零)是一个回文字符串(一个前后读取相同的字符串),那么它就是回文。例如,数字5, 77, 363, 4884, 11111, 12121和349943都是回文。 如果一个整数范围包含偶数个回文,那么它就是一个有趣的范围。范围 [L, R]且L <= R的定义为从L 阅读全文
posted @ 2019-04-19 18:01 bonelee 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 假设我们通过以下的方式用字符串来抽象我们的文件系统: 字符串"dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext"代表了: dir subdir1 subdir2 file.ext 目录 dir 包含一个空子目录 subdir1 和一个包含文件file.ext的子目录 s 阅读全文
posted @ 2019-04-19 16:05 bonelee 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 端口扫描系统实践心得 from:https://www.freebuf.com/articles/es/201210.html 端口扫描系统实践心得 from:https://www.freebuf.com/articles/es/201210.html 端口扫描对任何一名网络安全从业者来说都不陌生 阅读全文
posted @ 2019-04-19 12:08 bonelee 阅读(2727) 评论(0) 推荐(0) 编辑
摘要: xgboost的可以参考:https://xgboost.readthedocs.io/en/latest/gpu/index.html 整体看加速5-6倍的样子。 Gradient Boosting, Decision Trees and XGBoost with CUDA By Rory Mit 阅读全文
posted @ 2019-04-19 09:34 bonelee 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 1.分割 -- split命令 可以指定按行数分割和按字节大小分割两种模式。 (1) 按行数分割 加上-d,使用数字后缀;加上--verbose,显示分割进度: (2) 按字节大小分割 2.合并 -- cat命令 例如: split -b 10m metadata.txt part_ cat par 阅读全文
posted @ 2019-04-17 11:33 bonelee 阅读(5385) 评论(0) 推荐(0) 编辑
摘要: class Solution: # @param nums: The integer array # @param target: Target number to find # @return the first position of target in nums, position start from 0 def binarySearch(self,... 阅读全文
posted @ 2019-04-13 11:19 bonelee 阅读(775) 评论(0) 推荐(0) 编辑
上一页 1 ··· 119 120 121 122 123 124 125 126 127 ··· 271 下一页