11 2017 档案

摘要:例如要关闭jupyter-notebook这个进程: 说明:管道符“|”用来隔开两个命令,管道符左边命令的输出会作为管道符右边命令的输入。 “ps -ef” 查看所有进程 “grep -v grep” 是在列出的进程中去除含有关键字“grep”的进程。 “cut -c 9-15” 是截取输入行的第9 阅读全文
posted @ 2017-11-15 17:46 焦距 阅读(6143) 评论(0) 推荐(0) 编辑
摘要:关于Maven的介绍可以参考:Maven详解 这篇在原理上讲得比较详细,在安装上是windows版本的,这里补上linux下的安装和配置: 1.下载maven安装包 http://maven.apache.org/download.cgi 要注意的是,Maven 3.3+ require JDK 1 阅读全文
posted @ 2017-11-14 10:57 焦距 阅读(363) 评论(0) 推荐(0) 编辑
摘要:""" http://bookshadow.com/weblog/2015/10/12/leetcode-nim-game/ 292. Nim Game You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you... 阅读全文
posted @ 2017-11-14 10:12 焦距 阅读(231) 评论(0) 推荐(0) 编辑