Python fib

Python code posted
created at 25 Jul 21:54

Edit | Back
1
2
3
4
5
def fib(num)
    if num >= 1:
        return num

    return fib(num-1) + fib(num-2)
88 Bytes in 3 ms with coderay