Celica is a brave person and believer of a God in the bright side. He always fights against the monsters that endanger humans. One day, he is asked to go through a maze to do a important task.
The ma...
分类:
其他好文 时间:
2014-10-27 00:36:52
阅读次数:
268
Go has only one looping construct, theforloop.The basicforloop looks as it does in C or Java, except that the( )are gone (they are not even optional) ...
分类:
其他好文 时间:
2014-10-27 00:09:59
阅读次数:
240
数据仓库建模 — 星型模式Example of Star Schema数据仓库建模 — 雪片模式Example of Snowflake Schema节省存储空间一定程度上的范式星形 vs.雪花型Which one is better?长期以来的争论两种观点各有支持者争论在继续……目前看来,大部分更...
分类:
其他好文 时间:
2014-10-26 21:07:21
阅读次数:
263
1 /** 2 * OUTMAN附 3 * 4 * @author 王启文 5 * 6 */ 7 public class One { 8 private String name; 9 private int hp;10 private int mp;11 ...
分类:
其他好文 时间:
2014-10-26 21:01:40
阅读次数:
198
A var declaration can include initializers, one per variable.If an initializer is present, the type can be omitted; the variable will take the type of...
分类:
其他好文 时间:
2014-10-26 20:59:53
阅读次数:
168
keys_.keys(object)
Retrieve all the names of the object's properties.
_.keys({one: 1, two: 2, three: 3});
=> ["one", "two", "three"]
values_.values(object)
Return all of the values of the obje...
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2014-10-26 16:58:18
阅读次数:
134
DP、KMP什么的都太高大上了,自己想了个朴素的遍历方法。
【题目】
Given a string S,
find the longest palindromic substring in S.
You may assume that the maximum length of S is
1000, and there exists one unique longest palin...
分类:
其他好文 时间:
2014-10-26 15:37:32
阅读次数:
249
//Method one//document.oncontextmenu=new Function('event.returnValue=false;'); document.oncontextmenu = function (e) { e = e || window.event; e.return...
分类:
Web程序 时间:
2014-10-26 13:05:37
阅读次数:
138
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2014-10-26 11:35:14
阅读次数:
142