摘要: 1 import java.util.ArrayList; 2 import java.util.HashSet; 3 import java.util.List; 4 import java.util.Set; 5 6 /** 7 * Created by cuihongyu on 2017/06/23. 8 */ 9 public class Solution { 1... 阅读全文
posted @ 2017-06-23 17:54 大腮鱼 阅读(215) 评论(0) 推荐(0)
摘要: 1 class Solution { 2 /** 3 * Returns a index to the first occurrence of target in source, 4 * or -1 if target is not part of source. 5 * @param source string to be scanned. ... 阅读全文
posted @ 2017-06-23 15:23 大腮鱼 阅读(138) 评论(0) 推荐(0)
摘要: 文本编辑 1.光标在屏幕文本中的移动既可以用箭头键,也可以用hjkl字母键。 h 左移 j 下移 k 上移 l 右移 2.欲进入vim编辑器(从命令提示行),请输入:vim 文件名<回车> 3.欲退出vim编辑器,请输入 <Esc> :q! <回车> 放弃所有改动。 或者输入<Esc> :wq <回 阅读全文
posted @ 2017-06-23 14:07 大腮鱼 阅读(147) 评论(0) 推荐(0)