Created
February 15, 2017 13:52
-
-
Save ScalaWilliam/1f2c8d0b3218b246190b01f50b3d90c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def fib(n): | |
| pass | |
| assert fib(0) == 0 | |
| assert fib(1) == 1 | |
| assert fib(2) == 1 | |
| assert fib(3) == 2 | |
| assert fib(4) == 3 | |
| assert fib(5) == 5 | |
| assert fib(6) == 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment