Fix #13, PEP8-ify notebooks.

This commit is contained in:
Donne Martin
2015-07-11 15:35:22 -04:00
parent 03f04fbc4c
commit 235b6c5abe
6 changed files with 12 additions and 10 deletions

View File

@@ -7,9 +7,11 @@ class TestMaximingXor(object):
assert_equal(max_xor(10, 15), 7)
print('Success: test_maximizing_xor')
def main():
test = TestMaximingXor()
test.test_maximizing_xor()
if __name__ == '__main__':
main()