其他
1、beforeCreate 在实例初始化之后,数据观测和event/watcher时间配置之前被调用。 2、created 实例已经创建完成之后被调用。在这一步,实例已经完成以下的配置:数据观测,属性和方法的运算,watch/event事件回调。然而,挂载阶段还没开始,$el属性目前不可见。 3、 ...
使用方法: nmap [扫描类型(s)] [选项] {目标说明} 目标说明: 通过主机名称, IP 地址, 网段, 等等. 协议: scanme.nmap.org, microsoft.com/24, 192.168.0.1; 10.0.0 255.1 254 iL : 输入 主机或者网段 iR : ...
一、题目 Longest Substring Without Repeating Characters,具体请自行搜索。 这个题目,我看了一下,经过一番思考,我觉得实现起来不是很复杂。 但要做到bug free有点难度,主要是边界的问题。 二、这个题目,我自己实现,没有参考代码 提交了5次: 第1次 ...
You have some sticks with positive integer lengths. You can connect any two sticks of lengths X and Y into one stick by paying a cost of X + Y. You pe ...
1. git 、 svn 比较 git、svn都是版本控制工具,方便多人合作对项目进行分布式开发 2. git 个人理解及介绍 a) git 通常采用命令行进行操作,主要概念有本地仓库,缓存区,远程仓库等, 本地仓库 (commit) 》 缓存区 (push) 》远程仓库 b) git 衍生 git ...
卮客杂俎是一个专注炼丹算命的心灵术士,热爱哲学的神经科学票友的网站 网址 http://www.zhiiker.com/ 项目地址 https://github.com/zhiiker/zhiiker.github.io 在项目中并没有源文件,但根目录有 readme.md 文件,编译的时候没有把它 ...
0. 1. examples: def fib(n): if n == 1 or n == 2: result = 1 else result = fib(n-1) + fib(n-2) return result this is very in-efficient, O(2^n), and we ...
Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directionally (horizontal or vertical.) Yo ...