Created
October 13, 2020 05:28
-
-
Save aershov24/14fde715a64f4e5c87aeda14a6c032b0 to your computer and use it in GitHub Desktop.
Markdium-12 Recursion Interview Questions (SOLVED) Devs Have To Nail
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 F(n): | |
| if n == 0: return 0 | |
| elif n == 1: return 1 | |
| else: return F(n-1)+F(n-2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment