MCPcopy Create free account
hub / github.com/ActiveState/code / recipe-67677.py

File recipe-67677.py

recipes/Python/67677_fibonacci/recipe-67677.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#get nth fibonacci number for n < = 0 returns 1
2fib = lambda n,a=1,b=1:n-1 + abs(n-1) and fib(n-1,b,a+b) or b
3#another version
4fib = lambda n,a=1,b=1:[b,0][n>0] or fib(n-1,b,a+b)

Callers

nothing calls this directly

Calls 1

fibFunction · 0.50

Tested by

no test coverage detected