Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gumb0/co_exercise1

Test exercise from some company
https://github.com/gumb0/co_exercise1

Last synced: 17 days ago
JSON representation

Test exercise from some company

Awesome Lists containing this project

README

        

# Test exercise to get hired.

Consider the following recursively defined function

f(0) = 1

f(1) = 1

f(2n) = f(n)

f(2n+1) = f(n) + f(n-1)

Compute f(123456789012345678).