bug-apl
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-apl] Fibonacci sequence


From: David Lamkins
Subject: Re: [Bug-apl] Fibonacci sequence
Date: Thu, 3 Jul 2014 09:32:51 -0700

I assume you're trying to do this with Dyalog d-fns.

You need a generator that can produce the next number in the sequence, and a test to check whether you're done.You can run the generator and test in a tail-recursive loop while accumulating the results.

I don't know that you'd need to use local functions, but don't forget that's available.

From: "Elias Mårtenson" <address@hidden>
To: "address@hidden" <address@hidden>
Cc: 
Date: Thu, 3 Jul 2014 22:12:50 +0800
Subject: [Bug-apl] Fibonacci sequence
I was playing around with solving the Dyalog challenge, and I found them pretty easy with the exception of one.

The goal was to write a lambda function that given a single integer, returns a list of the Fibonacci series up to that number.

The only way I can think of solving it is by using a full function and a loop. That can't possibly be the easiest way.

Any suggestions?



--

reply via email to

[Prev in Thread] Current Thread [Next in Thread]