Fix #13, PEP8-ify notebooks.

This commit is contained in:
Donne Martin
2015-07-11 15:35:34 -04:00
parent 235b6c5abe
commit 4566d1a803
3 changed files with 11 additions and 3 deletions

View File

@@ -11,11 +11,13 @@ class TestFib(object):
assert_equal(result, fib_seq)
print('Success: test_fib')
def main():
test = TestFib()
test.test_fib(fib_recursive)
test.test_fib(fib_dynamic)
test.test_fib(fib_iterative)
if __name__ == '__main__':
main()