photo

Osahon Usuanlele


Last seen: oltre 3 anni fa Attivo dal 2020

Followers: 0   Following: 0

Statistica

  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
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 ...

oltre 3 anni fa | 0