Mathematics / Algorithmic Resources: ProjectEuler.net puzzles - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:53:45Zhttp://stackoverflow.com/feeds/question/122634http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles14Mathematics / Algorithmic Resources: ProjectEuler.net puzzlesKyle Burton2008-09-23T17:59:39Z2008-10-18T12:23:36Z
<p>I've used brute force for the most part for the <a href="http://projecteuler.net/" rel="nofollow">ProjectEuler.net</a> 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.</p>
<p>What are suggested resources for learning about those topics? </p>
<ul>
<li>numeric sequences</li>
<li>properties of pascal's triangle</li>
<li>infinite sequences</li>
</ul>
<p>Is anyone else working through ProjectEuler simply for self-improvement?</p>
http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/122652#1226523Answer by zigdon for Mathematics / Algorithmic Resources: ProjectEuler.net puzzleszigdon2008-09-23T18:02:18Z2008-09-23T18:02:18Z<p>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!</p>
<p>One thing that I've found very useful is once you DO solve a problem, read through the discussions about it, often very illuminating.</p>
http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/122864#1228648Answer by DK for Mathematics / Algorithmic Resources: ProjectEuler.net puzzlesDK2008-09-23T18:34:01Z2008-09-23T18:34:01Z<p>You may find this resource useful:
<a href="http://mathworld.wolfram.com/topics/NumberTheory.html" rel="nofollow">Mathworld: Number Theory</a>,
<a href="http://mathworld.wolfram.com/topics/Sequences.html" rel="nofollow">Mathworld: Sequences</a></p>
http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/131252#1312527Answer by Alexander Kojevnikov for Mathematics / Algorithmic Resources: ProjectEuler.net puzzlesAlexander Kojevnikov2008-09-25T03:02:35Z2008-09-25T03:17:50Z<p>Project Euler is amazing (I'm at 101 problems).</p>
<p>I suggest that you read a book on algorithms, I can recommend these two:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to Algorithms</a> </li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1848000693" rel="nofollow">The Algorithm Design Manual</a></li>
</ul>
<p>Other suggestions are discussed in <a href="http://stackoverflow.com/questions/48337/modern-books-on-algorithms">this thread</a>.</p>
<p>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.</p>
<p>As for the topics you listed, I use these websites:</p>
<ul>
<li><a href="http://www.research.att.com/~njas/sequences/" rel="nofollow">Sloane's</a> (for sequences)</li>
<li><a href="http://mathworld.wolfram.com/" rel="nofollow">MathWorld</a> (for other topics)</li>
</ul>
<p>Some Wikipedia articles are also quite helpful.</p>
http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/131264#1312644Answer by stalepretzel for Mathematics / Algorithmic Resources: ProjectEuler.net puzzlesstalepretzel2008-09-25T03:07:03Z2008-09-25T03:07:03Z<p>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.</p>
http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/194323#1943230Answer by J.F. Sebastian for Mathematics / Algorithmic Resources: ProjectEuler.net puzzlesJ.F. Sebastian2008-10-11T17:03:08Z2008-10-11T17:03:08Z<p>Any book on <a href="http://modular.math.washington.edu/edu/2007/spring/ent/ent-html/index.html" rel="nofollow">Elementary Number Theory</a> might help.</p>
http://stackoverflow.com/questions/122634/mathematics-algorithmic-resources-projecteuler-net-puzzles/214969#2149690Answer by Andrea Ambu for Mathematics / Algorithmic Resources: ProjectEuler.net puzzlesAndrea Ambu2008-10-18T12:23:36Z2008-10-18T12:23:36Z<p><a href="http://mathworld.wolfram.com/" rel="nofollow">Wolfram</a> helped me out with several problems :)</p>