photo

Osahon Usuanlele


Last seen: 3 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Out of memory Problem [Problem 2 , Project Euler (Sum of even Fibonacci numbers)]
def fibs(num): arr = [1,1] count = 1 while count < num - 1: arr.append(arr[len(arr)-1] + arr[len(arr)-2]) count+=1 ...

3 years ago | 0