Skip to content

I recently took a codility test and decided to make some repos based on the questions as an opportunity show some of my coding abilities in JS/CoffeeScript. This solution shows how to programatically create the fibonacci function and has supporting Jasmine Unit tests. F(0) = 0. F(1) = 1. F(N) = F(N−1) + F(N−2) if N ≥ 2. F(0) = 0. F(1) = 1. F(8) …

Notifications You must be signed in to change notification settings

johan--/Codility-JS-Q3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

About

I recently took a codility test and decided to make some repos based on the questions as an opportunity show some of my coding abilities in JS/CoffeeScript. This solution shows how to programatically create the fibonacci function and has supporting Jasmine Unit tests. F(0) = 0. F(1) = 1. F(N) = F(N−1) + F(N−2) if N ≥ 2. F(0) = 0. F(1) = 1. F(8) …

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published