Data update
This commit is contained in:
parent
8e4e15fa56
commit
72eb4943cb
1853 changed files with 35514 additions and 9441 deletions
|
|
@ -1,21 +1,18 @@
|
|||
'''Nth Fibonacci term (by folding)'''
|
||||
|
||||
from functools import reduce
|
||||
from operator import add
|
||||
|
||||
|
||||
# nthFib :: Integer -> Integer
|
||||
def nthFib(n):
|
||||
'''Nth integer in the Fibonacci series.'''
|
||||
def go(ab, _):
|
||||
return ab[1], add(*ab)
|
||||
return reduce(go, range(1, n), (0, 1))[1]
|
||||
return reduce(
|
||||
lambda acc, _: (acc[1], sum(acc)),
|
||||
range(1, n),
|
||||
(0, 1)
|
||||
)[0]
|
||||
|
||||
|
||||
# MAIN ---
|
||||
if __name__ == '__main__':
|
||||
print(
|
||||
'1000th term: ' + repr(
|
||||
nthFib(1000)
|
||||
)
|
||||
)
|
||||
n = 1000
|
||||
print(f'{n}th term: {nthFib(n)}')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue