// Source : https://oj.leetcode.com/problems/jump-game/// Author : wizzhangquan@gmail.com// Date : 2014-11-22/**************************************.....
分类:
编程语言 时间:
2014-11-22 15:49:35
阅读次数:
166
My naive $O(n^2)$ running time solution:class Solution {public: int jump(int A[], int n) { if(1 == n) return 0; int maxL = (1= (i-j) ...
分类:
其他好文 时间:
2014-11-22 02:02:12
阅读次数:
198
1.《飞吧 30》第一个是IPhone 下载地址,第二个是android的。点击跳转链接,或者扫描二维码。 游戏实现见:《cocos2d 高仿doodle jump》2. 《30 快跑》第一个是IPhone 下载地址,第二个是android的。点击跳转链接,或者扫描二维码。 游戏实现见:《cocos2d...
分类:
其他好文 时间:
2014-11-21 16:17:30
阅读次数:
180
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:
其他好文 时间:
2014-11-20 23:32:37
阅读次数:
254
iptables 指令语法iptables [-t table] command [match] [-j target/jump][-t table] 指定规则表-t 参数用来,内建的规则表有三个,分别是:nat、mangle 和 filter,当未指定规则表时,则一律视为是 filter。个规则表...
分类:
其他好文 时间:
2014-11-19 20:20:39
阅读次数:
271
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Determine i...
分类:
编程语言 时间:
2014-11-19 18:51:35
阅读次数:
226
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Determine i...
分类:
其他好文 时间:
2014-11-19 12:35:24
阅读次数:
130
问题描述:
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Dete...
分类:
其他好文 时间:
2014-11-19 11:16:51
阅读次数:
145
问题描述:
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Dete...
分类:
其他好文 时间:
2014-11-19 01:17:42
阅读次数:
177
项目中需要实现数据查询,基于django的admin架构必然会很容易实现。不过在用户体验方面就会比较low了,因此需要自己实现类adminsite的效果。而且项目需要实现响应式所以bootstrap就成了首选。研究了一下午,基本上做好了技术准备。1、资源django-endless-paginati...
分类:
Web程序 时间:
2014-11-18 15:56:27
阅读次数:
207