Today is my birthday and I have totally refreshed. Knowing yourself is the beginning of all wisdom. 智者始于自知。 The most difficult thing in the world may ...
分类:
其他好文 时间:
2017-02-14 15:56:13
阅读次数:
216
module.exports = function(grunt) { // 配置项 var AppConfig = { name: 'app', //源文件目录 src: 'app/src', //生产文件目录 dist: 'app/assets' }; //加载所有的任务 ... ...
分类:
Web程序 时间:
2017-02-12 17:01:00
阅读次数:
225
在不久之前,我一直不理解为神马大家在做题时经常用define来代替某些函数,或者用来直接定义某些极大的变量。It is not until today that I understand why it is used, and wonder at its high efficiency. 使用的原因 ...
分类:
其他好文 时间:
2017-02-08 22:42:24
阅读次数:
339
1 package Today; 2 //LeetCode:492. Construct the Rectangle 3 /* 4 For a web developer, it is very important to know how to design a web page's size. 5... ...
分类:
其他好文 时间:
2017-02-06 13:29:38
阅读次数:
229
1 package Today; 2 //LeetCode:485. Max Consecutive Ones 3 /* 4 Given a binary array, find the maximum number of consecutive 1s in this array. 5 6 Exam... ...
分类:
其他好文 时间:
2017-02-06 13:22:30
阅读次数:
155
1 package Today; 2 //LeetCode:35. Search Insert Position 3 /* 4 Given a sorted array and a target value, return the index if the target is found. 5 If... ...
分类:
其他好文 时间:
2017-02-06 13:14:39
阅读次数:
130
1 package Today; 2 //LeetCode:476. Number Complement 3 /* 4 Given a positive integer, output its complement number. 5 The complement strategy is to fl... ...
分类:
其他好文 时间:
2017-02-06 13:13:42
阅读次数:
162
package Today;//LeetCode:459. Repeated Substring Pattern/* Given a non-empty string check if it can be constructed by taking a substring of it and app ...
分类:
其他好文 时间:
2017-02-06 13:09:33
阅读次数:
159
1 package Today; 2 3 import java.util.HashMap; 4 import java.util.Map; 5 6 //LeetCode:167. Two Sum II - Input array is sorted 7 /* 8 Given an array of... ...
分类:
其他好文 时间:
2017-02-06 12:22:04
阅读次数:
182
什么是对象 JavaScript中的所有事物都是对象:字符串、数值、数组、函数.... 每个对象带有属性和方法 JavaScript允许自定义对象 自定义对象 定义并创建对象实例 使用函数来定义对象,然后创建新的对象实例 String字符串对象 String对象用于处理已有的字符串 字符串可以使用单 ...
分类:
编程语言 时间:
2017-02-03 16:50:17
阅读次数:
230