由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 有人做projecteuler吗?
相关主题
有木有人爱project eulerImmigration & Naturalization (INS A) Number 是什么?
向hackie大牛学习开始做Project Euler一道G的面试题。
Divide num list into grp of consecutive nums with order preservedLeetcode Two Sum,我这个O(n)解法为啥不讨服务器的好呢
An interview question from a well-known small company为什么这题要用min heap?Sort numbers stored on different machines
24点程序,有人能现场写出来么?why 6e6.5 is an invalid number?
骑驴找马记分享一道trading firm的code screen,只能用c++
问道题: numbers of distinct substringLeast Common Ancester算法最优解
LC: happy number怎么保证一定停机或循环?find subset that sum up to given number
相关话题的讨论汇总
话题: sum话题: numbers话题: natural话题: squares
进入JobHunting版参与讨论
1 (共1页)
p*****2
发帖数: 21240
1
能不能谈谈感受?
h****e
发帖数: 928
2
我当时用C++, Perl和Ruby轮着做里面的题目,到level 4。觉得题目到后面越来
越偏数学。如果不用相应的数学方法和定理的话,brute-force根本解不出来。
还有递归方法很快就不行了:要么stack overflow,要么超时,overnight都算不完。
有意思的地方是你解出题目以后,可以看别人的解答,不少用很冷门的语言解题
的,例如J,K等,有的只用一行程序就解出来的,不过看起来就象line noise一
样。还有用汇编的。
里面也有一些少年英才,我看到一个说14岁,自己一边学数学,一边学编程,
做做题玩玩的。
p*****2
发帖数: 21240
3

太膜拜了。level 4也做了100道题了吧。你觉得值得做做吗?总的来说。

【在 h****e 的大作中提到】
: 我当时用C++, Perl和Ruby轮着做里面的题目,到level 4。觉得题目到后面越来
: 越偏数学。如果不用相应的数学方法和定理的话,brute-force根本解不出来。
: 还有递归方法很快就不行了:要么stack overflow,要么超时,overnight都算不完。
: 有意思的地方是你解出题目以后,可以看别人的解答,不少用很冷门的语言解题
: 的,例如J,K等,有的只用一行程序就解出来的,不过看起来就象line noise一
: 样。还有用汇编的。
: 里面也有一些少年英才,我看到一个说14岁,自己一边学数学,一边学编程,
: 做做题玩玩的。

w****x
发帖数: 2483
4

你工作不忙吗,咋又那么多时间做题?

【在 p*****2 的大作中提到】
:
: 太膜拜了。level 4也做了100道题了吧。你觉得值得做做吗?总的来说。

p*****2
发帖数: 21240
5

忙呀。今天又拖了一天学习scala。明天得干活了。

【在 w****x 的大作中提到】
:
: 你工作不忙吗,咋又那么多时间做题?

h****e
发帖数: 928
6
对找工作当然没有什么直接帮助。当时还不知道Leetcode,只是想找一些
有意思的题目练练编程而已。
S******t
发帖数: 151
7
我PE切了177题,好久没动了,前几个月好几次想试试都下不了手。
不过我觉得Project Euler对算法训练的帮助不大,主要是数学思维。
另外如果学习一门新语言的时候可以通过切Project Euler前50题来锻炼手感和熟悉语
言的一些基本语法和常用的数据结构。
p*****2
发帖数: 21240
8

我就是想熟悉一下scala,所以才用这个的。看来对熟悉语言还是有帮助呀。

【在 S******t 的大作中提到】
: 我PE切了177题,好久没动了,前几个月好几次想试试都下不了手。
: 不过我觉得Project Euler对算法训练的帮助不大,主要是数学思维。
: 另外如果学习一门新语言的时候可以通过切Project Euler前50题来锻炼手感和熟悉语
: 言的一些基本语法和常用的数据结构。

l*******b
发帖数: 2586
9
都是数学题?编程解决的,看起来挺好玩,哈哈
p*****2
发帖数: 21240
10

做了5道,感觉还好。

【在 l*******b 的大作中提到】
: 都是数学题?编程解决的,看起来挺好玩,哈哈
p*****2
发帖数: 21240
11
真有意思。scala做上边的题非常简洁。
比如这道
The sum of the squares of the first ten natural numbers is,
12 + 22 + ... + 102 = 385
The square of the sum of the first ten natural numbers is,
(1 + 2 + ... + 10)2 = 552 = 3025
Hence the difference between the sum of the squares of the first ten natural
numbers and the square of the sum is 3025 385 = 2640.
Find the difference between the sum of the squares of the first one hundred
natural numbers and the square of the sum.
scala:
val nums=1 to 100
println(nums.sum*nums.sum-nums.map(i=>i*i).sum)
p*****2
发帖数: 21240
12
刷了10题,睡觉。希望周末之前能再刷20题。
l*******b
发帖数: 2586
13
http://projecteuler.net/problem=410
终于把这个做出来了,有个每题前100的badge了,哈哈
看人家贴的解答貌似都很牛......差距呀
1 (共1页)
进入JobHunting版参与讨论
相关主题
find subset that sum up to given number24点程序,有人能现场写出来么?
one interview question, very difficult, smart people can do骑驴找马记
工作后面试,还有很多考做题目的么?问道题: numbers of distinct substring
什么是DP?:)LC: happy number怎么保证一定停机或循环?
有木有人爱project eulerImmigration & Naturalization (INS A) Number 是什么?
向hackie大牛学习开始做Project Euler一道G的面试题。
Divide num list into grp of consecutive nums with order preservedLeetcode Two Sum,我这个O(n)解法为啥不讨服务器的好呢
An interview question from a well-known small company为什么这题要用min heap?Sort numbers stored on different machines
相关话题的讨论汇总
话题: sum话题: numbers话题: natural话题: squares