Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 961 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 961 Bytes

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.