摘要: Install Anaconda and python 1. cuda-8.0 download cuda_8.0.61_375.26_linux.run ./cuda_8.0.61_375.26_linux.run 2.cudnnv5.1 for cuda-8.0 download cudnn-8 阅读全文
posted @ 2017-02-16 11:42 陆草纯 阅读(1498) 评论(0) 推荐(0) 编辑
摘要: 1、安装easy_install http://blog.csdn.net/A8572785/article/details/10945237 2、与ipython兼容的ipdb命令 pip install https://pypi.python.org/packages/source/i/ipdb 阅读全文
posted @ 2016-07-14 19:40 陆草纯 阅读(401) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/niuwei22007/article/details/47684673 http://blog.csdn.net/m624197265/article/details/45700619 http://blog.sina.com.cn/s/blog_9908 阅读全文
posted @ 2016-04-01 21:42 陆草纯 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Integer to English Words Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. For ex 阅读全文
posted @ 2016-03-25 14:28 陆草纯 阅读(906) 评论(0) 推荐(0) 编辑
摘要: 1、选择日期备份为xml格式 2、修改后缀为html格式 3、用Adobe Acrobat生成pdf 阅读全文
posted @ 2016-03-24 20:54 陆草纯 阅读(428) 评论(0) 推荐(1) 编辑
摘要: Counting Bits Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary repres 阅读全文
posted @ 2016-03-24 19:38 陆草纯 阅读(1900) 评论(0) 推荐(0) 编辑
摘要: Missing NumberGiven an array containingndistinct numbers taken from0, 1, 2, ..., n, find the one that is missing from the array.For example,Givennums=... 阅读全文
posted @ 2015-08-25 22:20 陆草纯 阅读(1790) 评论(0) 推荐(0) 编辑
摘要: Ugly Number IIWrite a program to find then-th ugly number.Ugly numbers are positive numbers whose prime factors only include2, 3, 5. For example,1, 2,... 阅读全文
posted @ 2015-08-22 12:13 陆草纯 阅读(537) 评论(0) 推荐(0) 编辑
摘要: Add DigitsGiven a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is... 阅读全文
posted @ 2015-08-22 11:52 陆草纯 阅读(1107) 评论(0) 推荐(0) 编辑
摘要: Binary Tree PathsGiven a binary tree, return all root-to-leaf paths.For example, given the following binary tree: 1 / \2 3 \ 5All root-to-lea... 阅读全文
posted @ 2015-08-22 11:31 陆草纯 阅读(2232) 评论(0) 推荐(0) 编辑