标题:3Sum Closest通过率:27.0%难度:中等Given an arraySofnintegers, find three integers inSsuch that the sum is closest to a given number, target. Return the sum...
分类:
其他好文 时间:
2015-04-08 21:12:13
阅读次数:
141
标题:3Sum通过率: 16.9%难度:中等Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the s...
分类:
其他好文 时间:
2015-04-08 19:40:27
阅读次数:
135
标题:Binary Tree Right Side View通过率:27.9%难度:中等Given a binary tree, imagine yourself standing on therightside of it, return the values of the nodes you c...
分类:
其他好文 时间:
2015-04-06 15:40:28
阅读次数:
93
题目:Word Break通过率:22.6%难度:中等Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more ...
分类:
其他好文 时间:
2015-04-03 23:44:22
阅读次数:
171
标题:House Robber通过率:27.5%难度:简单You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, th...
分类:
其他好文 时间:
2015-04-03 22:19:01
阅读次数:
155
题目链接:valid-number
/**
*
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the pro...
分类:
其他好文 时间:
2015-04-03 15:28:08
阅读次数:
137
出于兴趣爱好,也由于本人参加了2014年中级会计师的考试。于是充分利用自身数据采集的优势,经过大量数据分析,得出以下数据供各位立志从事中级会计师证考试的考生一个参考:
云南省
2014年云南省中级会计师报考人数: 17504 人
一年(2014年) 一次通过的人数为: 417人 2014年一次通过率:
2.3%
两年(2014年,2013年) 通过的人数为: 867人...
分类:
其他好文 时间:
2015-04-02 15:09:02
阅读次数:
251
标题:Triangle通过率:27.1%难度:中等Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.F...
分类:
其他好文 时间:
2015-03-30 20:59:18
阅读次数:
113
标题:Jump Game通过率:27.3%难度:中等Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the ar...
分类:
其他好文 时间:
2015-03-29 17:52:07
阅读次数:
125
标题:Partition List通过率:27.5%难度:中等Given a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal to...
分类:
其他好文 时间:
2015-03-29 17:49:07
阅读次数:
111