Fix #13, PEP8-ify notebooks.

This commit is contained in:
Donne Martin
2015-07-11 15:39:59 -04:00
parent 4566d1a803
commit 3712839cc9
26 changed files with 139 additions and 92 deletions

View File

@@ -34,6 +34,7 @@ class TestStacks(object):
print('Success: test_stacks\n')
def main():
num_stacks = 3
stack_size = 100
@@ -42,5 +43,6 @@ def main():
test.test_push_on_full(num_stacks, stack_size)
test.test_stacks(num_stacks, stack_size)
if __name__ == '__main__':
main()