Renamed HackerRank and TopCoder section to Online Judges.

This commit is contained in:
Donne Martin
2015-07-02 23:38:18 -04:00
parent d253a4929a
commit 3e8632a3ff
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
from nose.tools import assert_equal
class TestMaximingXor(object):
def test_maximizing_xor(self):
assert_equal(max_xor(10, 15), 7)
print('Success: test_maximizing_xor')
def main():
test = TestMaximingXor()
test.test_maximizing_xor()
if __name__ == '__main__':
main()