Tagged Questions
0
votes
3answers
86 views
Recursion depth error in simple Python program
I am new to programming, and was trying to solve this problem on Project Euler using basic Python.
Essentially, I tried to use recursion based on the largest value chosen at every stage, and using ...
3
votes
2answers
151 views
Unable to find bug in my Haskell program (Puzzle #2 from Project Euler)
SPOILER ALERT: Don't look at this if you are trying to solve Project Euler's problem #2 on your own w/o looking at the answer.
I've already completed problem #2 of Project Euler (computing the sum of ...
1
vote
3answers
1k views
Factorial method - recursive or iterative? (Java)
I was making my way through project Euler, and I came across a combination problem. Combination logic means working out factorials. So, I decided to create a factorial method. And then I hit upon a ...
0
votes
0answers
241 views
Rewrite Recursive algorithm more simply - Euler 15
I would like to rewrite the functionality of this algorithm (which I used to solve ProjectEuler problem 15) in a non recursive way.
Yes, I realise there are many better ways to solve the actual ...
4
votes
3answers
451 views
Looping vs recursion with F#
The example code here solves a project Euler problem:
Starting with the number 1 and moving to the right in a clockwise
direction a 5 by 5 spiral is formed as follows:
21 22 23 24 25
20 7 ...
2
votes
4answers
678 views
finding greatest prime factor using recursion in c
have wrote the code for what i see to be a good algorithm for finding the greatest prime factor for a large number using recursion. My program crashes with any number greater than 4 assigned to the ...
0
votes
1answer
508 views
Coin change algorithm always returning one
/**
*
* @param d
* currency divisions
* @param p
* target
* @return number of coins
*/
public static int change(int[] d, int p) {
int[] tempArray = new int[p*2]; // ...
3
votes
1answer
103 views
How to call the lazy-seq made so far within construction of a lazy-seq?
For my prime numbers lazy seq, I am checking to see if an index value is divisible by all the primes below that current index (prime?). The problem is, when I call primes within itself (primes within ...
2
votes
4answers
479 views
Is it possible to generate 40,000+ element of Fibonacci recursively in Lisp?
I'm trying to solve Project Euler question 2 with Lisp. This recursive solution blows the stack on execution, but I thought Lisp (using clisp) would recognize the tail recursion. This is being entered ...
2
votes
6answers
817 views
Stackoverflow error in this recursion
What's wrong with this recursion in Java?
public class findPyt
{
public static int sum = 0;
public static void main(String[] args)
{
findP(3, 4, 5);
}
public static void ...
10
votes
4answers
7k views
Python recursive function error: “maximum recursion depth exceeded”
I solved Problem 10 of Project Euler with the following code, which works through brute force:
def isPrime(n):
for x in range(2, int(n**0.5)+1):
if n % x == 0:
return False
...
2
votes
3answers
268 views
How to recursively compare the digits in a number in Haskell
I am doing problem 112 on Project Euler and came up with the following to test the example case (I'll change the number in answer to 0.99 to get the real answer):
isIncre x | x == 99 = False
...
0
votes
3answers
165 views
How do I save the original argument in a recursive function in PHP?
I'm in PHP working on an Euler problem. I have this function so far:
<?php
$biggest = 0;
$counter = 1;
function test($i){
global $biggest;
global $counter;
if ($i == 1) {
echo ...
1
vote
1answer
652 views
Dynamic Programming Recursion and a sprinkle of Memoization
I have this massive array of ints from 0-4 in this triangle. I am trying to learn dynamic programming with Ruby and would like some assistance in calculating the number of paths in the triangle that ...
0
votes
6answers
2k views
Simple recursion problem
I'm taking my first steps into recursion and dynamic programming and have a question about forming subproblems to model the recursion.
Problem:
How many different ways are there to
flip a ...
0
votes
2answers
1k views
Haskell: recursion with array arguments
Disclaimer: I'm new to Haskell and I don't remember a lot about FP from university, so there may be more than one or two errors in my code. This is also my code for Euler Problem 3.
I'm trying to ...
-4
votes
3answers
995 views
Changing a function from iterative to recursive?
projectEuler3(600851475143);
var projectEuler3 = function (composite) {
var result = 2;
while(composite > 1)
{
if (composite % result)
{
result++
} ...
5
votes
8answers
3k views
Project Euler (P14): recursion problems
Hi I'm doing the Collatz sequence problem in project Euler (problem 14). My code works with numbers below 100000 but with numbers bigger I get stack over-flow error.
Is there a way I can re-factor ...
4
votes
2answers
1k views
C stack overflow on Project Euler 27
I just have started to learn Haskell and combine reading books and tutorials with solving problems from Project Euler. I have stuck on Problem 27 because I get "C stack overflow" error using this ...