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

@@ -35,7 +35,6 @@
"source": [
"## Constraints\n",
"\n",
"See the [HackerRank problem page](https://www.hackerrank.com/challenges/maximizing-xor)."
]
},
@@ -124,10 +123,12 @@
" assert_equal(max_xor(10, 15), 7)\n",
" print('Success: test_maximizing_xor')\n",
"\n",
"\n",
"def main():\n",
" test = TestMaximingXor()\n",
" test.test_maximizing_xor()\n",
"\n",
"\n",
"if __name__ == '__main__':\n",
" main()"
]