Updated sol2.py to make it work as expected

This commit is contained in:
Harshil 2018-06-03 12:47:36 +02:00 committed by GitHub
parent 8727246ed7
commit 16cd42c26c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,12 @@
def fib(n): def fib(n):
ls = [] a, b, s = 0, 1, 0
a,b = 0,1 while b < n:
n += 1 if b % 2 == 0 and b < n: s += b
for i in range(n): a, b = b, a+b
if (b % 2 == 0): ls.append(s)
ls.append(b)
else: T = int(input().strip())
pass ls = []
a,b = b, a+b for _ in range(T):
print (sum(ls)) fib(int(input().strip()))
return None print(*ls, sep = '\n')
fib(10)