码迷,mamicode.com
首页 >  
搜索关键字:challenge    ( 728个结果
微软职位内部推荐-Software Engineer II
微软近期Open的职位:Job Title: Software Engineer IIWork Location: Suzhou/Beijing, ChinaJob Description:Are you looking for a big challenge? Do you know why Bi...
分类:其他好文   时间:2015-03-12 13:00:13    阅读次数:128
[LeetCode] String to Integer (atoi) 字符串
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:其他好文   时间:2015-03-10 06:46:26    阅读次数:239
VMware Coding Challenge: Removing Duplicates Entries
1 static LinkedListNode removeDuplicates(LinkedListNode list) { 2 LinkedListNode cur = list; 3 HashSet set = new HashSet(); 4 ...
分类:系统相关   时间:2015-03-07 06:16:45    阅读次数:154
VMware Coding Challenge: The Heist
类似BackpackII问题 1 static int maximize_loot(int[] gold, int[] silver) { 2 int[][] res = new int[gold.length+silver.length+1][10001]; 3 ...
分类:系统相关   时间:2015-03-07 06:16:13    阅读次数:251
VMware coding Challenge: Coin Toss Betting
1 static int CoinTossEndAmount(int betAmount, String coinTossResults) { 2 if (betAmount <=0 || coinTossResults.length() == 0) return betA...
分类:系统相关   时间:2015-03-07 06:14:58    阅读次数:164
LeetCode: String to Integer (atoi)
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below ...
分类:其他好文   时间:2015-03-05 20:48:00    阅读次数:156
待做题目。。。
1:hihocoder challenge 9,D题,神结论2:bc valentine’s round,C题3:bc #31,C题
分类:其他好文   时间:2015-03-01 22:15:37    阅读次数:156
VMware coding Challenge:Date of Weekday
这道题再次证明了这种细节的题目,画个图容易搞清楚 1 import java.util.Scanner; 2 3 4 public class Solution2 { 5 static int DateOfWeekday(int date, int weekday) { 6 ...
分类:系统相关   时间:2015-02-27 14:59:52    阅读次数:209
VMware Coding Challenge: Possible Scores && Summary: static
Combination Sum I 那道题的变体 1 /* 2 * Complete the function below. 3 */ 4 5 static int is_score_possible(int score, int[] increments) { 6 A...
分类:系统相关   时间:2015-02-27 13:28:23    阅读次数:341
《Zero to One》的一些读书笔记
第一章《The Challenge of the Future》:全球化是横向的扩张,只能复制以前就有的成功,而科技创新是纵向的扩张,是创造以前不存在的东西。没有科技创新,只有全球化,这个世界只能玩完。这是为什么要科技创新的原因。 第二章《Party Like It’s 1999》:回...
分类:其他好文   时间:2015-02-27 11:31:14    阅读次数:145
728条   上一页 1 ... 58 59 60 61 62 ... 73 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!