Difference between revisions of "Shared:Sandbox"

From CECO
Jump to: navigation, search
Line 1: Line 1:
<html><div data-configid="0/2247838" style="width: 850px; height: 1000px;" class="issuuembed"></div><script type="text/javascript" src="//e.issuu.com/embed.js" async="true"></script></html>
+
<syntaxhighlight lang="python">
 +
def fib(n):
 +
    if n == 0:
 +
        return 0
 +
    elif n == 1:
 +
        return 1
 +
    else:
 +
        return fib(n-1) + fib(n-2)
 +
</syntaxhighlight>

Revision as of 17:29, 9 September 2013

def fib(n):
    if n == 0:
        return 0
    elif n == 1:
        return 1
    else:
        return fib(n-1) + fib(n-2)