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

@@ -34,7 +34,6 @@
"source": [
"## Constraints\n",
"\n",
"* Can we assume the string is ASCII?\n",
" * Yes\n",
" * Note: Unicode strings could require special handling depending on your language\n",
@@ -127,12 +126,6 @@
"def main():\n",
" test = TestCompress()\n",
" test.test_compress(compress_string)\n",
" try:\n",
" test.test_compress(compress_string_alt)\n",
" except NameError:\n",
" # Alternate solutions are only defined\n",
" # in the solutions file\n",
" pass\n",
"\n",
"if __name__ == '__main__':\n",
" main()"