Skip to content

Various implementation in various languages of a function to deliver the nth number in the Fibonacci Sequence.

Notifications You must be signed in to change notification settings

russel/Fibonacci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fibonacci

This repository contains the fibonacci function, a function to deliver the nth value in the Fibonacci Sequence:

f(0) = 0
f(1) = 1
f(n) = f(n - 1) + f(n - 2), n > 1

coded with a number of different algorithms/implementations in various languages. The purpose is not to provide Fibonacci as a Service (FaaS), but it to investigate data-driven testing (both example based and property based) in the various languages.

See Also

Rosetta Code is possibly the premier location of examples of coding. For fibonacci see http://rosettacode.org/wiki/Fibonacci_sequence They are concerned only with the code of the algorithm, the point of this repository is as much the tests as the algorithms.

Licence

All code in this repository is licenced under the GNU Public Licence version 3 (GPLv3). The licence statement is omitted from the individual files, but applies nontheless. The GPLv3 document file is contained in this repository.

About

Various implementation in various languages of a function to deliver the nth number in the Fibonacci Sequence.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published