Skip to content

Conversation

@jweeber
Copy link

@jweeber jweeber commented May 2, 2016

Finished required methods. Will try the travel one if I have time this week.


def fib(n)
return 1 if n <= 2
return fib(n - 1) + fib(n - 2)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@sudocrystal
Copy link

👍 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants