上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 以下内容是python tutorial 的读书笔记: 一.关于list的操作 1.list的remove,pop, clear的区别 list.remove(x):从list中删除值为list的元素 list.pop([i]):从list中删除第i个元素,如果没有指定i的话,就会删除最后一个元素。 阅读全文
posted @ 2017-10-19 17:13 whatyouknow123 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1.采用四个空格作为缩进 2.一行代码不要超多79个字符 3.使用空行分割类,函数,以及大块代码 4.注释独占一行 5.使用文档字符串 6.操作符的两侧,逗号后面都要加空格(但是括号的里侧是不加的) 7.统一的函数和类命名:类名采用驼峰 式,方法和函数的命名方式是小写字符加下划线,总是用self作为 阅读全文
posted @ 2017-10-18 16:59 whatyouknow123 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 以下内容是学习Python Tutorial的个人学习笔记: 一.循环控制语句 1.在for循环中修改迭代序列是不安全的,我们可以通过修改迭代序列副本来规避这个问题。 比如:原来的迭代是 for word in words,那么现在有在for循环中修改words,我们就要把它变成 for word 阅读全文
posted @ 2017-10-18 16:50 whatyouknow123 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 为了明年的面试,把面试中可能遇到的关于java的问题记录在下面,纯个人理解,如果有误,请指正! 1.java中拷贝的三种方式,以及他们的区别。 这三种方式分别是:直接赋值,浅拷贝,深拷贝。第一种直接赋值 a2 = a1,那么此时的a1和a2都指向同一个对象a1;第二种浅拷贝,它创建了一个新的对象,并 阅读全文
posted @ 2017-10-17 22:34 whatyouknow123 阅读(699) 评论(0) 推荐(0) 编辑
摘要: 以下的内容是 Kevin P.Murphy 的 Machine Learning A Probabilistic Perspective的第28章的读书笔记 一.介绍 深度学习是机器学习的一种,它是从人的大脑认识事物的过程抽象而来的。 二.深度生成模型 因为现实中要想获得大量标签是很困难的,因此我们 阅读全文
posted @ 2017-10-17 20:40 whatyouknow123 阅读(293) 评论(0) 推荐(0) 编辑
摘要: Description: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your al 阅读全文
posted @ 2017-10-16 22:07 whatyouknow123 阅读(401) 评论(0) 推荐(0) 编辑
摘要: Description: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return 第二种想法:第i行有i个数;每次往最前面插入一个1,那么除了头尾以外, 阅读全文
posted @ 2017-10-15 22:50 whatyouknow123 阅读(480) 评论(0) 推荐(0) 编辑
摘要: Description: Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [-2 阅读全文
posted @ 2017-10-13 22:19 whatyouknow123 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Description: Given an array and a value, remove all instances of that value in place and return the new length. Do not allocate extra space for anothe 阅读全文
posted @ 2017-10-09 09:24 whatyouknow123 阅读(125) 评论(0) 推荐(0) 编辑
摘要: description: Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should 阅读全文
posted @ 2017-09-18 11:14 whatyouknow123 阅读(117) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页