mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-05 00:48:03 +00:00
Fix #13, PEP8-ify notebooks.
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user