vote up 14 vote down star
9

I've used brute force for the most part for the ProjectEuler.net problems that I have been able to solve. One thing I'm finding is that, for some of the puzzles, I'm not able to find good resources for 'backfilling' my understanding of the problem domains the puzzles represent.

What are suggested resources for learning about those topics?

  • numeric sequences
  • properties of pascal's triangle
  • infinite sequences

Is anyone else working through ProjectEuler simply for self-improvement?

flag

47% accept rate
Perhaps this should be tagged 'puzzle' instead of 'puzzles' – Brad Gilbert Sep 26 '08 at 18:34
Yes, I've just started after reading about ProjectEuler here at SO. – JesperE Oct 11 '08 at 19:14

6 Answers

vote up 0 vote down

Wolfram helped me out with several problems :)

link|flag
vote up 0 vote down

Any book on Elementary Number Theory might help.

link|flag
vote up 4 vote down

Whenever you solve a problem, spend a lot of time on the discussion forum. There are some very smart people who discuss their solutions. Project Euler is meant to help you learn through solving. Look up the terms that you don't understand, and you'll learn concepts like that.

link|flag
vote up 7 vote down

Project Euler is amazing (I'm at 101 problems).

I suggest that you read a book on algorithms, I can recommend these two:

Other suggestions are discussed in this thread.

Also, after you solve a problem and feel you didn't use the most efficient algorithm, read comments in the thread that discusses it. Then re-code your solution with the right approach. After several problems you will notice that there are repeating patterns in the approaches.

As for the topics you listed, I use these websites:

Some Wikipedia articles are also quite helpful.

link|flag
vote up 8 vote down

You may find this resource useful: Mathworld: Number Theory, Mathworld: Sequences

link|flag
Mathworld is a very nice resource for math things. – rslite Oct 9 '08 at 18:08
vote up 3 vote down

I do play with ProjectEuler, though I've been stuck on #78 for way too long. Keep in mind that brute forcing the questions is really not the goal - ideally, you are supposed to come up with a program that will find a solution in less than 60 seconds!

One thing that I've found very useful is once you DO solve a problem, read through the discussions about it, often very illuminating.

link|flag
So far I've done everything in CL and have been disciplined enough to keep to the 60s rule. Thanks for the encouragement. – Kyle Burton Sep 23 '08 at 18:09
Hint on #78, there is a well-known recurrence for p in terms of pentagonal numbers. You will probably have to look it up. That will make calculating it much, much faster. – bentilly Sep 23 '08 at 19:45
That does seem to be related. Trying to absorb the math. Thanks! – zigdon Sep 23 '08 at 20:37
60 seconds limit is for all languages (including relatively slow language impl. e.g., Ruby, Python). It means that in C (fast) the limit should be under 1 second or less in my experience. – J.F. Sebastian Oct 11 '08 at 16:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.