PEP style

This commit is contained in:
Akshay Sharma 2016-09-26 16:09:59 +05:30
parent a3c5167fad
commit 2dcb85d581

View File

@ -4,6 +4,7 @@ This is a pure Python implementation of Dynamic Programming solution to the fibo
class Fibonacci:
def __init__(self, N=None):
if N:
N = int(N)