Removed bytearray solution, needs some tweaks to make it work with Python 3.

This commit is contained in:
Donne Martin
2015-07-06 06:30:00 -04:00
parent 45fa576bc2
commit 73924c279a
3 changed files with 6 additions and 96 deletions

View File

@@ -13,12 +13,6 @@ class TestCompress(object):
def main():
test = TestCompress()
test.test_compress(compress_string)
try:
test.test_compress(compress_string_alt)
except NameError:
# Alternate solutions are only defined
# in the solutions file
pass
if __name__ == '__main__':
main()