bug-apl
[Top][All Lists]
Advanced

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

Re: [Bug-apl] Fibonacci sequence


From: Juergen Sauermann
Subject: Re: [Bug-apl] Fibonacci sequence
Date: Thu, 03 Jul 2014 18:50:24 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5

Hi,

how about this:

      F←{ ⍎ ↑(↑⍵>¯1↑⍵) ↓(1≠⍴,⍵) ↓'F ⍵,1 1' '¯1↓1↓⍵' 'F ⍵, +/¯2↑⍵' }

      F 44
1 1 2 3 5 8 13 21 34

/// Jürgen



On 07/03/2014 06:39 PM, Elias Mårtenson wrote:

I am actually trying to do it with GNU APL. I just got the challenges from Dyalog. :-)

I'll send you a link to it when I'm in front of a computer.

Regards,
Elias

On 4 Jul 2014 00:32, "David Lamkins" <address@hidden> wrote:
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]