Project Euler problem #25
#python program with test cases to find the index of 1000 digits fibonacci number
import unittest
def fib_index(n):
if type(n)!=int:
return 'Type error'
if n<1 :
return None
count=2
length=1
a,b=1,1
while lengt...
mycodingjourneyy.hashnode.dev1 min read