Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gumb0/co_exercise1
- Owner: gumb0
- Created: 2015-05-15T13:34:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-30T06:57:31.000Z (over 9 years ago)
- Last Synced: 2024-10-07T20:20:19.431Z (about 1 month ago)
- Language: C++
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).