摘要: 724_Find Pivot Index [TOC] Description Given an array of integers , write a method that returns the "pivot" index of this array. We define the pivot i 阅读全文
posted @ 2018-06-17 11:36 xugenpeng 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 20_有效的括号(Valid Parentheses) [TOC] 描述 给定一个只包括 ,`')' '{' '}' '[' ']'` 的字符串,判断字符串是否有效。 有效字符串需满足: 1. 左括号必须用相同类型的右括号闭合。 2. 左括号必须以正确的顺序闭合。 注意空字符串可被认为是有效字符串。 阅读全文
posted @ 2018-06-17 11:35 xugenpeng 阅读(1031) 评论(0) 推荐(0) 编辑
摘要: 66_Plus One [TOC] Description Given a non empty array of digits representing a non negative integer, plus one to the integer. The digits are stored su 阅读全文
posted @ 2018-06-17 11:31 xugenpeng 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 《Think Python》第17章学习笔记 [TOC] 17.1 面向对象的特性(Object oriented features) Python 是一门 面向对象的语言(object oriented programming language) ,提供支持面向对象编程的特性。面向对象编程语言有以 阅读全文
posted @ 2018-06-10 14:01 xugenpeng 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 《Think Python》第16章学习笔记 [TOC] 16.1 Time 无 16.2 纯函数(Pure functions) 纯函数不会对传入的参数(实参)做任何修改。 16.3 修改器(Modifiers) 与纯函数相反,修改器将会修改作为参数的对象。 一般而言, 只要是合理的情况下,推荐使 阅读全文
posted @ 2018-06-10 09:43 xugenpeng 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 《Think Python》第15章学习笔记 [TOC] 15.1 程序员定义的类型(Programmer defined types) 定义一个类的过程会创建一个 类型对象(type object) 。比如,我们创建一个点( )类: 因为点( )类定义在最高层,因此,它的“全名”(full nam 阅读全文
posted @ 2018-06-09 15:35 xugenpeng 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 使用 [DL4J][01] 训练中文词向量 [TOC] 1 预处理 对中文语料的预处理,主要包括:分词、去停用词以及一些根据实际场景制定的规则。 3 调用 调用训练好的词向量也非常简单,只需要调用 类的静态方法 就可以了,提供的输入参数就是训练好的词向量路径。 附录 maven 依赖 [01]: h 阅读全文
posted @ 2018-06-06 13:36 xugenpeng 阅读(1499) 评论(0) 推荐(0) 编辑
摘要: [TOC] 写入 Excel 文件 读取 Excel 文件 遍历 Excel 文件 需要的 maven 依赖 完整代码 阅读全文
posted @ 2018-06-06 10:27 xugenpeng 阅读(1851) 评论(0) 推荐(0) 编辑
摘要: [TOC] 8.1 字符串是一个序列(A string is a sequence) 字符串是一个字符序列。可以使用中括号运算符 一次从字符串中读取一个字符,中括号中的表达式称为索引(index),用于指示序列中你想要字符的位置。值得注意的是, 索引指的是从字符串起始位置开始的偏移(offset) 阅读全文
posted @ 2018-06-03 22:30 xugenpeng 阅读(361) 评论(0) 推荐(0) 编辑
摘要: [TOC] 7.1 重新赋值(Reassignment) 在 Python 中,用等号 进行变量赋值,但是变量赋值语句,比如 ,与数学意义上的等式不是等价的。 7.2 更新变量(Updating variables) 无 7.3 语句(The statement) 无 7.4 语句( ) 无 7.5 阅读全文
posted @ 2018-06-03 14:55 xugenpeng 阅读(390) 评论(0) 推荐(0) 编辑