码迷,mamicode.com
首页 >  
搜索关键字:comare version number    ( 48018个结果
JS对象类型的确定
JS是松散类型的语言,这一点JS的对象表现得尤为突出。那么如何来确定JS对象的具体类型呢?首先,我们可以使用typeof运算符确定其基本类型(number,object,function,undefined)。如果typeof运算符返回object我们再使用instanceof来确定该对象是否属于某...
分类:Web程序   时间:2014-06-27 16:35:22    阅读次数:230
[leetcode] Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.
分类:其他好文   时间:2014-06-27 12:59:50    阅读次数:176
[leetcode] Combination Sum II
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.
分类:其他好文   时间:2014-06-27 12:52:03    阅读次数:213
[leetcode] ZigZag Conversion
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font ...
分类:其他好文   时间:2014-06-27 12:40:25    阅读次数:187
uboot中gd的定义和使用
近期在做uboot中nand启动相关的工作,遇到一个问题一直纠结着。如今最终明确了这个问题,想想还有好多兄弟在某个黑暗的角落里或者某台电脑前纠结着呢,所以赶紧写下来以供查阅。uboot version 2014.4/* Architecture-specific global data */stru...
分类:其他好文   时间:2014-06-27 12:34:33    阅读次数:193
[leetcode] Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.
分类:其他好文   时间:2014-06-27 12:11:50    阅读次数:337
剑指offer (43) n个骰子的点数
题目:把n个骰子扔在地上,所有骰子朝上一面的点数之和为s,输入n,打印出s的所有可能的值出现的概率int g_maxValue = 6; // ====================方法一====================void Probability(int number, int* p...
分类:其他好文   时间:2014-06-27 11:57:12    阅读次数:221
阿里云上SVN搭建
操作系统centOs6.31、安装#yum install subversion#判断是否安装成功#subversion -v#或者svnserve --version#建立SVN库。#mkdir /opt/svn/repos#svnadmin create /opt/svn/repos执行上面的命...
分类:其他好文   时间:2014-06-27 11:50:34    阅读次数:245
[leetcode] Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.
分类:其他好文   时间:2014-06-27 11:43:25    阅读次数:173
[leetcode] N-Queens II
Now, instead outputting board configurations, return the total number of distinct solutions.
分类:其他好文   时间:2014-06-27 11:40:13    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!