active questions tagged project-euler - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:58:12Z http://stackoverflow.com/feeds/tag/project-euler http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799997/project-euler-10-conundrum 0 Project Euler #10 Conundrum Austin Hyde 2009-11-25T21:15:34Z 2009-11-25T21:32:41Z <p>So after pulling my hair out for 30 minutes, I have decided to come to SO for some help on Project Euler #10:</p> <blockquote> <p>The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.</p> <p>Find the sum of all the primes below two million.</p> </blockquote> <p>Now, I don't want to know <em>how</em> to do the problem - that's easy - and <em>especially not</em> the answer. I would like to know why my code isn't giving me the correct answer when I run it (C#):</p> <pre><code>using System; using System.Collections.Generic; public class Euler010 { public static bool isPrime(Int64 n) { if (n &lt;= 1) return false; if (n &lt; 4) return true; if (n % 2 == 0) return false; if (n &lt; 9) return true; if (n % 3 == 0) return false; Int64 r = (Int64)Math.Floor(Math.Sqrt((double)n)); Int64 f = 5; while (f &lt;= 4) { if (n % f == 0) return false; if (n % (f + 2) == 0) return false; f += 6; } return true; } public static void Main() { Int64 sum = 2; for (Int64 n = 3; n &lt;= 2000000; n+=2) { if (isPrime(n)) { sum += n; } } Console.WriteLine(sum); Console.ReadLine(); } } </code></pre> <p>When run to <code>n &lt;= 10</code>, it outputs <code>17</code>, like it should. When run to anything that's easy to compute by hand, it outputs the correct answer (like <code>n &lt;= 20</code> -> <code>77</code>).</p> <p>However, when I run this, it outputs <code>666667333337</code> which Project Euler says is wrong.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1799843/how-to-left-right-truncate-numbers-without-strings-euler-37 -1 How to left/right truncate numbers without strings (Euler #37) Rubens Farias 2009-11-25T20:47:05Z 2009-11-25T21:28:25Z <p>As stated in <a href="http://projecteuler.net/index.php?section=problems&amp;id=37" rel="nofollow">problem 37</a> at <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a>:</p> <blockquote> <p>The number 3797 has an interesting property. Being prime itself, it is possible to continuously remove digits from left to right, and remain prime at each stage: 3797, 797, 97, and 7. Similarly we can work from right to left: 3797, 379, 37, and 3.</p> </blockquote> <p>I already solved this problem (answer ends with 7 :-), but a doubt remains: how efficiently left/right truncate a number, WITHOUT using strings? I built following code, but it seems ugly:</p> <pre><code>public static void Main() { Console.WriteLine( // 3797, 379, 37, 3, 797, 97, 7 String.Join(", ", 3797L.Truncate().ToArray())); Console.ReadLine(); } static IEnumerable&lt;long&gt; Truncate(this long number) { yield return number; long aux = number; while ((aux /= 10) &gt; 0) // right to left yield return aux; // god forgive me, but it works while ((number = (number.Reverse() / 10).Reverse()) &gt; 0) // left to right { yield return number; } } public static long Reverse(this long number) { long reverse = number % 10; number = number / 10; while (number != 0) { reverse = (number % 10) + (10 * reverse); number = number / 10; } return reverse; } </code></pre> <p><strong>EDIT:</strong> I ended with this code:</p> <pre><code>static IEnumerable&lt;long&gt; Truncate(this long number) { yield return number; int i = 10; while (number / i &gt; 0) { yield return number / i; yield return number % i; i *= 10; } } </code></pre> http://stackoverflow.com/questions/199184/how-do-i-check-if-a-number-is-a-palindrome 9 How do I check if a number is a palindrome? Esteban Araya 2008-10-13T22:10:39Z 2009-11-25T20:32:20Z <p>Any language. Any algorithm (except making the number a string and then reversing the string).</p> <p>Also, I actually have to do this, and I'll be posting my solution too.</p> http://stackoverflow.com/questions/1783668/how-to-recursively-compare-the-digits-in-a-number-in-haskell 1 How to recursively compare the digits in a number in Haskell Jonno_FTW 2009-11-23T15:03:26Z 2009-11-23T17:30:03Z <p>Hi</p> <p>I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=112" rel="nofollow">problem 112</a> on Project Euler and came up with the following to test the example case (I'll change the number in <code>answer</code> to 0.99 to get the real answer):</p> <pre><code>isIncre x | x == 99 = False | otherwise = isIncre' x where isIncre' x = ??? isDecre x = isIncre (read $ reverse $ show x :: Int) isBouncy x = (isIncre x == False) &amp;&amp; (isDecre x == False) bouncers x = length [n|n&lt;-[1..x],isBouncy n] nonBouncers x = length [n|n&lt;-[1..x],(isBouncy n) == False] answer = head [x|x&lt;-[1..],((bouncers x) / (nonBouncers x)) == 0.5] </code></pre> <p>But what I don't know how to do is define a function <code>isIncre'</code> which tests to see if the digits in a number are greater than or equal to the one on their left. I know it needs to be done recursively but how? </p> <p>On a side note, I know I can only use <code>/</code> on two floating point numbers but how can I make the output of <code>bouncers</code> to be floating point number instead of an integer?</p> <p>Edit:</p> <p>Thanks for the help, but it didn't like the <code>=</code> when I changed <code>isIncre</code> to:</p> <pre><code>isIncre x | x &lt;= 99 = False | otherwise = isIncre' (mshow x) where isIncre' (x:y:xs) = (x &lt;= y) &amp;&amp; (isIncre' (y:xs)) isIncre' _ = True </code></pre> http://stackoverflow.com/questions/1779174/how-to-rearrange-this-function-to-return-the-extended-list-in-haskell 1 How to rearrange this function to return the extended list in Haskell Jonno_FTW 2009-11-22T16:22:26Z 2009-11-22T16:34:17Z <p>Hi</p> <p>I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=68" rel="nofollow">problem 68</a> at project euler and came up with the following code in Haskell to return the list of numbers which fit the (given) solution:</p> <pre><code>lists = [n|n&lt;- permutations [1..6] , ring n ] ring [a,b,c,d,e,f] = (length $ nub $ map sum [[d,c,b],[f,b,a],[e,a,c]]) == 1 </code></pre> <p>This only returns a list of lists of 6 numbers each which fit the solution. What I don't know how to do, is make it return the actual solution, the lists that fit the form:</p> <pre><code>[d,c,b],[f,b,a],[e,a,c] </code></pre> <p>How can I make <code>lists</code> return a list of this format?</p> <p>(PS: I will add in the appropriate functions to return what the site actually wants later)</p> http://stackoverflow.com/questions/1732177/problem-in-project-euler-32 -1 Problem in project euler #32 NewCoder 2009-11-13T21:59:48Z 2009-11-20T15:50:23Z <p>Hi,</p> <p>I'm trying to solve <a href="http://projecteuler.net/index.php?section=problems&amp;id=32" rel="nofollow">problem 32 of project euler</a> in Java but I'm not getting the correct answer. I'm getting the answer of the following program as 48146. Could anyone please tell me what's wrong I'm doing here and how can I solve that problem? </p> <p>Here's the code through which I'm trying to solve that problem:</p> <pre><code>public class Euler32 { public static boolean checkValue(char c,String s,int j) { for(int i=j+1;i&lt;s.length();i++) if(c==s.charAt(i)) return true; return false; } public static void main(String[] args) { long total=0; long sum=0; for(int i1=40;i1&lt;=999;i1++) { for(int j=130;j&lt;=9999;j++) { sum=i1*j; String s=i1+""+j+""+sum; if(s.length()!=9) continue; else { for(int i=0;i&lt;s.length()-1;i++) { if(checkValue(s.charAt(i),s,i)) break; if(i+1==s.length()-1) total+=sum; } } } } System.out.println("Total sum is: "+total); } } </code></pre> http://stackoverflow.com/questions/1765379/tips-for-project-euler-problem-78 1 Tips for Project Euler Problem #78 Marc Müller 2009-11-19T18:12:19Z 2009-11-19T20:16:44Z <p>This is the problem in question: <a href="http://projecteuler.net/index.php?section=problems&amp;id=78" rel="nofollow">Problem #78</a></p> <p>This is driving me crazy. I've been working on this for a few hours now and I've been able to reduce the complexity of finding the number of ways to stack <code>n</code> coins to <code>O(n/2)</code>, but even with those improvements <em>and</em> starting from an <code>n</code> for which <code>p(n)</code> is close to one-million, I still can't reach the answer in under a minute. Not at all, actually.</p> <p>Are there any hints that could help me with this?</p> <p>Keep in mind that I don't want a full solution and there shouldn't be any functional solutions posted here, so as not to spoil the problem for other people. This is why I haven't included any code either.</p> http://stackoverflow.com/questions/1737470/problem-detecting-cyclic-numbers-in-haskell 1 Problem detecting cyclic numbers in Haskell Jonno_FTW 2009-11-15T12:54:24Z 2009-11-19T18:35:49Z <p>Hi</p> <p>I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=61" rel="nofollow">problem 61</a> at project Euler and came up with the following code (to test the case they give):</p> <pre><code>p3 n = n*(n+1) `div` 2 p4 n = n*n p5 n = n*(3*n -1) `div` 2 p6 n = n*(2*n -1) p7 n = n*(5*n -3) `div` 2 p8 n = n*(3*n -2) x n = take 2 $ show n x2 n = reverse $ take 2 $ reverse $ show n pX p = dropWhile (&lt; 999) $ takeWhile (&lt; 10000) [p n|n&lt;-[1..]] isCyclic2 (a,b,c) = x2 b == x c &amp;&amp; x2 c == x a &amp;&amp; x2 a == x b ns2 = [(a,b,c)|a &lt;- pX p3 , b &lt;- pX p4 , c &lt;- pX p5 , isCyclic2 (a,b,c)] </code></pre> <p>And all <code>ns2</code> does is return an empty list, yet <code>cyclic2</code> with the arguments given as the example in the question, yet the series doesn't come up in the solution. The problem must lie in the list comprehension <code>ns2</code> but I can't see where, what have I done wrong? </p> <p>Also, how can I make it so that the <code>pX</code> only gets the <code>pX (n)</code> up to the pX used in the previous <code>pX</code>?</p> <p>PS: in case you thought I completely missed the problem, I will get my final solution with this:</p> <pre><code>isCyclic (a,b,c,d,e,f) = x2 a == x b &amp;&amp; x2 b == x c &amp;&amp; x2 c == x d &amp;&amp; x2 d == x e &amp;&amp; x2 e == x f &amp;&amp; x2 f == x a ns = [[a,b,c,d,e,f]|a &lt;- pX p3 , b &lt;- pX p4 , c &lt;- pX p5 , d &lt;- pX p6 , e &lt;- pX p7 , f &lt;- pX p8 ,isCyclic (a,b,c,d,e,f)] answer = sum $ head ns </code></pre> http://stackoverflow.com/questions/1758672/euler-problem-in-haskell-can-someone-spot-my-error 5 Euler Problem in Haskell -- Can Someone Spot My Error rtperson 2009-11-18T20:02:13Z 2009-11-18T20:29:27Z <p>Hi all, </p> <p>I'm trying my hand at <a href="http://projecteuler.net/index.php?section=problems&amp;id=4" rel="nofollow">Euler Problem 4</a> in Haskell. It asks for that largest palindrome formed by multiplying two three-digit numbers. The problem was simple enough, and I thought my Haskell-fu was up to the task, but I'm getting a result that looks inconsistent to say the least. </p> <p>Here's my palindrome detector (which was simplicity itself to code):</p> <pre><code>isPalindrome :: String -&gt; Bool isPalindrome [] = True isPalindrome str = let str2 = reverse str in (str2 == str) </code></pre> <p>From here it's a simple question of writing a function to detect when a product forms a palindrome (and possibly to subtract one from one of the multiplicands and recurse over a brute-force search if it doesn't). Here's my very simplified version of this, stripped down and returning an IO action for debugging:</p> <pre><code>findPal :: Integer -&gt; Integer -&gt; IO() findPal 1 y = putStrLn "reached 1" findPal x y = let pal = isPalindrome $ show mult mult = x * y in case pal of true -&gt; putStrLn $ "mult is " ++ (show mult) false -&gt; putStrLn "pal is false" </code></pre> <p>Here are two separate outputs in GHCi:</p> <pre><code>*Main&gt; isPalindrome $ show (999*999) False *Main&gt; findPal 999 999 mult is 998001 </code></pre> <p>In other words, the call to isPalindrome is always evaluating to true in findPal's case statement, even when it should be false. </p> <p>What am I not seeing here?</p> http://stackoverflow.com/questions/1557522/how-to-refactor-this-in-j 0 How to refactor this in J? Jader Dias 2009-10-12T23:37:48Z 2009-11-14T06:03:35Z <p>Here is a different approach for the Project Euler #1 solution:</p> <pre><code>+/~.(3*i.&gt;.1000%3),5*i.&gt;.1000%5 </code></pre> <p>How to refactor it?</p> http://stackoverflow.com/questions/1719776/euler-26-how-to-convert-rational-number-to-string-with-better-precision 0 Euler #26, how to convert rational number to string with better precision? grokus 2009-11-12T03:54:10Z 2009-11-12T05:59:34Z <p>I want to get 1/7 with better precision, but it got truncated. How can I get better precision when I convert a rational number? Thanks.</p> <pre><code>&gt;&gt;&gt; str(1.0/7)[:50] '0.142857142857' </code></pre> http://stackoverflow.com/questions/1656197/project-euler-3-java-solution-problem 0 Project Euler #3 Java Solution Problem Austin Kelley Way 2009-11-01T02:16:37Z 2009-11-01T04:23:24Z <pre><code>class eulerThree { public static void main(String[] args) { double x = 600851475143d; for (double z = 2; z*z &lt;= x; z++) { if (x%z == 0) { System.out.println(z + "PRIME FACTOR"); } } } } </code></pre> <p>and the output is:</p> <pre><code>71.0 839.0 1471.0 6857.0 59569.0 104441.0 486847.0 </code></pre> <p>So, I assume 486847 is the largest prime factor of x, but project euler says otherwise. I don't see a problem in my code or my math, so I'm pretty confused. Can you see anything I can't?</p> http://stackoverflow.com/questions/1644446/what-is-sum-of-even-terms-in-fibonacci-4million-large-value-datatype-confusi 1 What is Sum of Even Terms In Fibonacci (<4million)? [Large Value Datatype Confusion] r0ach 2009-10-29T15:14:44Z 2009-10-31T17:21:24Z <p>By starting with 1 and 2, the first 10 terms of Fibonacci Series will be: </p> <p>1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...</p> <p>Find the sum of all the even-valued terms in the sequence which do not exceed 4 million.</p> <p><strong>SOLVED: Actually, I managed to get the solution myself. Here's my program. It works.</strong></p> <pre><code>#include &lt;stdio.h&gt; int main() { int x=1,y=2,sum,limit; //Here value of first 2 terms have been initialized as 1 and 2 int evensum=2; //Since in calculation, we omit 2 which is an even number printf("Enter Limit: "); //Enter limit as 4000000 (4million) to get desired result scanf("%d",&amp;limit); while( (x+y)&lt;limit ) { sum=x+y; x=y; y=sum; if (sum%2==0) evensum+=sum; } printf("%d \n",evensum); return 0; } </code></pre> http://stackoverflow.com/questions/662283/websites-like-projecteuler-net 15 Websites like projecteuler.net bb 2009-03-19T13:54:22Z 2009-10-28T18:04:56Z <p>Sometimes I'm solving problems on projecteuler.net. Almost all problems are solvable with programs, but these tasks are more mathematical than programmatical.</p> <p>Maybe someone knows similar sites with:</p> <ul> <li>design tasks,</li> <li>architecture tasks,</li> <li>something like "find most elegant C++ solution"?</li> </ul> http://stackoverflow.com/questions/1620521/finding-if-two-numbers-have-the-same-digit-and-then-remove-them-from-in-the-origi 0 Finding if two numbers have the same digit and then remove them from in the original number in Haskell Jonno_FTW 2009-10-25T10:13:40Z 2009-10-26T13:01:30Z <p>Hi I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=33" rel="nofollow">project euler question 33</a> and have divised a refactor to solve it but I can't think of how to remove the digit if it is the same across both <code>x</code> and <code>y</code>. I got this far:</p> <pre><code>import Ratio import List p33 = [ (x%y) | y &lt;- [10..99] , x &lt;- [10..y], (x `rem` 10) /= 0 , (y `rem` 10) /= 0 , x /= y , (length $ nub $ concat $ map decToList [x,y]) == 3 , [numerator(x%y),denominator(x%y)] == WHAT GOES HERE? ] </code></pre> <p>The cancelling of 0's is not allowed. What it should do is:</p> <pre><code>49/98 {cancel the 9's} </code></pre> <p>to get:</p> <p>4/8 as the result. But I can't think of how to remove the common digits from each number.</p> http://stackoverflow.com/questions/1623410/finding-palindromic-numbers-in-ruby 0 Finding palindromic numbers in Ruby PreciousBodilyFluids 2009-10-26T06:51:20Z 2009-10-26T07:15:04Z <p>So, I'm doing Project Euler to solidify my Ruby skills. I'm on problem #4, which reads:</p> <blockquote> <p>A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 * 99.</p> <p>Find the largest palindrome made from the product of two 3-digit numbers.</p> </blockquote> <p>First, I'm trying to verify my code using the information from the first paragraph. I've defined a palindrome function as so:</p> <pre><code>def palindrome?(blah) string = blah.to_s string.reverse == string end </code></pre> <p>My code looks like:</p> <pre><code>array = (90..99).to_a array = array.map{|u| array.map{|y| u*y}} array = array.sort array = array.select{|u| palindrome?(u)} puts array </code></pre> <p>The program doesn't output anything. If I do the following:</p> <pre><code>array = (90..99).to_a array = array.map{|u| array.map{|y| u*y}} array = array.sort #array = array.select{|u| palindrome?(u)} puts array </code></pre> <p>I get a long series of unsorted four-digit numbers, so I guess it's ignoring the sort. Finally, if I simply do:</p> <pre><code>#array = (90..99).to_a #array = array.map{|u| array.map{|y| u*y}} #array = array.sort array = [7447, 9009, 3551, 2419] array = array.select{|u| palindrome?(u)} puts array </code></pre> <p>I get 7447 and 9009, like I should. Why is this happening?</p> <p>I'm using 1.8.6, because that's the only version available on this Windows machine.</p> http://stackoverflow.com/questions/647721/quick-divisibility-check-in-zx81-basic 3 Quick divisibility check in ZX81 BASIC DJ Pirtu 2009-03-15T12:20:00Z 2009-10-25T15:45:31Z <p>Since many of the Project Euler problems require you to do a devisibility check for quite a number of times, I've been trying to figure out the fastest way to perform this task in ZX81 BASIC.</p> <p>So far I've compared <code>(N/D)</code> to <code>INT(N/D)</code> to check, wether <code>N</code> is devidable by <code>D</code> or not.<br /> I have been thinking about doing the test in Z80 machine code, I haven't yet figured out how to use the variables in the BASIC in the machine code.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1618685/how-can-i-maximally-partition-a-set 1 How can I maximally partition a set? Gregory Higley 2009-10-24T18:25:47Z 2009-10-25T07:37:03Z <p>I'm trying to solve one of the Project Euler problems. As a consequence, I need an algorithm that will help me find all possible partitions of a set, in any order.</p> <p>For instance, given the set <code>2 3 3 5</code>:</p> <pre><code>2 | 3 3 5 2 | 3 | 3 5 2 | 3 3 | 5 2 | 3 | 3 | 5 2 5 | 3 3 </code></pre> <p>and so on. Pretty much every possible combination of the members of the set. I've searched the net of course, but haven't found much that's directly useful to me, since I speak programmer-ese not advanced-math-ese.</p> <p>Can anyone help me out with this? I can read pretty much any programming language, from BASIC to Haskell, so post in whatever language you wish.</p> http://stackoverflow.com/questions/1611952/intermediate-lists-in-haskell 1 Intermediate lists in Haskell Jonno_FTW 2009-10-23T07:53:18Z 2009-10-23T16:19:55Z <p>Hi I am doing <a href="http://projecteuler.net/index.php?section=problems&amp;id=55" rel="nofollow">Project Euler question 55</a> on Lychrel numbers where the aim is to find the number of Lychrel numbers below 10,000 within 50 iterations. I came up with this:</p> <pre><code>revAdd n = (read $ reverse $ show n) + n lychrel n | length xs == 50 = error "False" | ((reverse $ show (revAdd n)) == (show (revAdd n))) = True | otherwise = (lychrel (revadd n) ) : xs answer = length [ x | x &lt;- [1..10000] , lychrel x == True] </code></pre> <p>But I don't know how to define <code>xs</code> as the list of previous iterations upon <code>n</code>, which are when <code>n</code> is not a palindrome. How would I do this, and secondly would this work?</p> http://stackoverflow.com/questions/25375/how-can-i-represent-a-very-large-integer-in-net 17 How can I represent a very large integer in .NET? Corey 2008-08-24T21:51:57Z 2009-10-21T15:04:48Z <p>Does .NET come with a class capable of representing extremely large integers, such as 100 factorial? If not, what are some good third party libraries to accomplish this?</p> http://stackoverflow.com/questions/438540/projecteuler-sum-combinations 2 (ProjectEuler) Sum Combinations koldfyre 2009-01-13T10:26:17Z 2009-10-20T17:11:17Z <p>From <a href="http://projecteuler.net/" rel="nofollow">ProjectEuler.net</a>:</p> <p><strong>Prob 76: How many different ways can one hundred be written as a sum of at least two positive integers?</strong></p> <p>I have no idea how to start this...any points in the right direction or help? I'm not looking for how to do it but some <strong>hints</strong> on how to do it.</p> <p>For example 5 can be written like:</p> <pre><code>4 + 1 3 + 2 3 + 1 + 1 2 + 2 + 1 2 + 1 + 1 + 1 1 + 1 + 1 + 1 + 1 </code></pre> <p>So 6 possibilities total.</p> http://stackoverflow.com/questions/1592058/problems-with-java-math-biginteger 0 Problems with java.math.BigInteger Jonathan 2009-10-20T01:45:11Z 2009-10-20T02:33:34Z <p>I have the following code at the head of a method:</p> <pre><code>BigInteger foo = BigInteger.valueOf(0); BigInteger triNum = BigInteger.valueOf(0); //set min value to 1*2*3*4*5*...*199*200. BigInteger min = BigInteger.ONE; BigInteger temp = BigInteger.ZERO; for(int i=1; i&lt;=200; i++) { temp = BigInteger.valueOf(i); min = min.multiply(temp); } System.out.println(min); while(triNum.compareTo(min) &lt;= 0) { foo.add(BigInteger.ONE); triNum = triNum.add(foo); System.out.println("triNum: "+triNum); } </code></pre> <p>This is supposed to load a min to a value (1 * 2 * 3 * ... * 199 * 200), and then set triNum to the first *triangle number** with a value greater than min.</p> <p>Problem is, when I run the method, all I get is a terminal window with a list of "triNum: 0" ever scrolling down the screen... I don't see anything in my code (although it is completely possible I made some mistake, and I am somewhat unfamiliar with math.BigInteger), and this seems to point back to the BigInteger class. Anyone see a bug in my code?</p> <p>..........................................................................................................................</p> <p>*A triangle number is a number that can be reached by: 1+2+3+4+5+6+7+...</p> http://stackoverflow.com/questions/1580985/finding-fibonacci-sequence-in-c-project-euler-exercise 1 Finding Fibonacci sequence in C#. [Project Euler Exercise] Papuccino1 2009-10-17T00:10:13Z 2009-10-17T16:26:48Z <p>Hi there, I'm having some trouble with this problem in Project Euler.</p> <p>Here's what the question asks:</p> <p><em>Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... Find the sum of all the even-valued terms in the sequence which do not exceed four million.</em></p> <p>My code so far: <strong>EDITED WITH NEW CODE THAT STILL DOESN'T WORK.</strong></p> <pre><code>static void Main(string[] args) { int a = 1; int b = 2; int Container = 0; int Sum = 0; while (b &lt; 4000000) { if (a % 2 == 0) { Container += a; } Sum = a + b; a = b; b = Sum; } Container += b; Console.WriteLine(Container.ToString()); Console.ReadLine(); } </code></pre> http://stackoverflow.com/questions/1537306/recommended-reading-for-solving-project-euler-problems 7 Recommended reading for solving Project Euler problems? Andrew Walker 2009-10-08T11:42:31Z 2009-10-16T19:31:37Z <p>Can anyone suggest any mathematical or programming books that have helped you progress in your learning whilst completing the project Euler problems? Even some suggestions for study areas or appropriate websites would be much appreciated.</p> <p><strong>Background</strong></p> <p>So far I've done a fair few of the Project Euler problems (I'm close to level 3). For the earlier problems it was easy to look things up on mathworld and wikipedia. For other problems Mathematica has been helpful. Now, it's getting to the point where I don't even know the names of some of the processes that are mentioned in the solution forum posts. Recently, I've found <a href="http://rads.stackoverflow.com/amzn/click/3642008550" rel="nofollow">Proofs from THE BOOK</a> to be quite helpful, but I'm looking for other reading material. </p> http://stackoverflow.com/questions/1571278/how-to-make-haskell-use-another-list-depending-on-the-previous-answer-in-haskell 0 How to make Haskell use another list depending on the previous answer in Haskell Jonno_FTW 2009-10-15T09:35:56Z 2009-10-15T10:20:51Z <p>Hi I am doing project euler question 63 where I must find the amount of numbers that exist where:</p> <pre><code>x^(n) == y </code></pre> <p>Where <code>n</code> is the length of <code>y</code>.</p> <p>It soon emerges that the results for this condition alternate between odd and even and so I came up with this in Haskell:</p> <pre><code>prob63 = [ n | n &lt;- nums n , i &lt;-[1..10], i^(length $ show n) == n] nums n | odd (n) == True = filter odd [n..] | otherwise = filter even [n..] </code></pre> <p>If n &lt;- [1..], prob63 produces a stream that looks like this:</p> <pre><code>[1,2,3,4,5,6,7,8,9,16,25,36,49,64,81,125,216,343,512,729,1296,2401,4096,6561,16807,32768,59049,117649,262144,531441] </code></pre> <p>But this is slow and what I came up with after doesn't work. What I need is, depending on the previous answer, it will start testing the odd or even integers from <code>n</code>. How would I go about this from what I already have?</p> http://stackoverflow.com/questions/1563550/project-euler-problem-2-in-f 0 Project Euler Problem 2 in F# Onorio Catenacci 2009-10-13T23:42:35Z 2009-10-13T23:49:14Z <p>I'm a bit stuck on the last step of getting the solution to <a href="http://projecteuler.net/index.php?section=problems&amp;id=2" rel="nofollow">problem 2</a> on Project Euler. This is the source I've gotten so far. </p> <pre><code>#light module pe2 (* Project Euler Problem 2 solution *) open System let Phi = 1.6180339887;; let invPhi = 1.0/Phi;; let rootOfFive = 2.236067977;; let maxFib = 4000000.0; let Fib n = System.Math.Round((Phi**n - invPhi**n)/rootOfFive);; let FibIndices = Seq.unfold(fun i -&gt; Some(i, i+3.0)) 3.0;; let FibNos = FibIndices |&gt; Seq.map(fun index -&gt; Fib(index));; let setAllowedFibNos = FibNos |&gt; Seq.filter(fun fn -&gt; (fn &lt;= maxFib));; // let answer = setAllowedFibNos |&gt; Seq.fold (+) 0.0; </code></pre> <p>When I uncomment the last line, the process never seems to finish. So I was hoping that someone could give me a gentle nudge in the right direction. I did look at setAllowedFibNos and it looks right but it's also an infinite sequence so I only see the first three terms.</p> <p>Also, could someone point me to the right way to chain the various sequences together? I tried something like this:</p> <pre><code>let answer = Seq.unfold(fun i-&gt; Some(i, i + 3.0)) 3.0 |&gt; Seq.map (fun index -&gt; Fib(index)) |&gt; Seq.filter(fun fn -&gt; (fn &lt;= maxFib)) |&gt; Seq.fold (+) 0.0;; </code></pre> <p>But that didn't work. As you can probably guess I'm just learning F# so please go gentle and if this sort of question has been asked and answered before, please post a link to the answer and I'll withdraw this one.</p> http://stackoverflow.com/questions/1555807/how-to-refactor-this-in-j 0 How to refactor this in J? Jader Dias 2009-10-12T17:16:11Z 2009-10-12T19:49:44Z <p>My newbie solution to Project Euler #1</p> <pre><code>+/((0=3|1+i.1000-1) +. (0=5|1+i.1000-1)) * (1+i.1000-1) </code></pre> <p>I know that this can be refactored, and transformed into a function, i don't know how to do it, and I would have to read all the labs to learn it.</p> http://stackoverflow.com/questions/1550015/optimisations-for-a-series-of-functions-in-haskell 0 Optimisations for a series of functions in Haskell Jonno_FTW 2009-10-11T06:27:45Z 2009-10-11T12:05:12Z <p>Hi</p> <p>I am trying to do problem 254 in project euler and arrived at this set of functions and refactor in Haskell:</p> <pre><code>f n = sum $ map fac (decToList n) sf n = sum $ decToList (f n) g i = head [ n | n &lt;- [1..], sf n == i] sg i = sum $ decToList (g i) answer = sum [ sg i | i &lt;- [1 .. 150] ] </code></pre> <p>Where:</p> <ul> <li><code>f (n)</code> finds the sum of the factorials of each digit in <code>n</code></li> <li><code>sf (n)</code> is the sum of the digits in the result of <code>f (n)</code></li> <li><code>g (i)</code> is the smallest integer solution for <code>sf (i)</code>. As there can be many results for <code>sf (i)</code> </li> <li><code>sg (i)</code> is the sum of the digits in the result of <code>g (i)</code></li> </ul> <p>But not long into running the compiled version of this script, it sucked up all my RAM. Is there a better way to implement the function <code>g (i)</code>? If so what can they be and how could I go about it?</p> <p>EDIT:</p> <p>Just out of clarity, my functions for:</p> <p><code>fac</code> is :</p> <pre><code>`fac 0 = 1` `fac n = n * fac (n-1)` </code></pre> <p><code>decToList</code> which makes a number into a list:</p> <pre><code>decToList1 x = reverse $ decToList' x where decToList' 0 = [] decToList' y = let (a,b) = quotRem y 10 in [b] ++ decToList' a </code></pre> <p>Although I did since update them to Yairchu's solution for optimisation sake.</p> http://stackoverflow.com/questions/1427040/project-euler-255 1 Project Euler # 255 Mike Waldman 2009-09-15T13:01:56Z 2009-10-11T00:07:56Z <p><a href="http://projecteuler.net/index.php?section=problems&amp;id=255" rel="nofollow">Project euler problem #255</a> is quite mathematical. I figured out how it is done for given example. Since I am a newbie in Python, I am not sure how to handle long range values. Below is the solution I have. But how does it work for 10^13 and 10^14?</p> <pre><code>def ceil(a, b): return (a + b - 1) / b; def func(a, b): return (b + ceil(a, b)) / 2; def calculate(a): ctr = 1; y = 200; while 1: z = func(a, y); if z == y: return ctr; y = z; ctr += 1; result = sum(map(calculate, xrange(10000, 100000))) / 9e4; print "%.10f" % result; </code></pre> <p>This gives 3.2102888889.</p> http://stackoverflow.com/questions/1015533/simple-c-problem 2 simple C problem marc lincoln 2009-06-18T22:31:04Z 2009-10-03T14:07:44Z <p>Hi, I have had to start to learning C as part of a project that I am doing. I have started doing the 'euler' problems in it and am having trouble with the <a href="http://projecteuler.net/index.php?section=problems&amp;id=1" rel="nofollow">first one</a>. I have to find the sum of all multiples of 3 or 5 below 1000. Could someone please help me. Thanks.</p> <pre><code>#include&lt;stdio.h&gt; int start; int sum; int main() { while (start &lt; 1001) { if (start % 3 == 0) { sum = sum + start; start += 1; } else { start += 1; } if (start % 5 == 0) { sum = sum + start; start += 1; } else { start += 1; } printf("%d\n", sum); } return(0); } </code></pre>