New test case to illustrate the improvements

This commit is contained in:
Ashhar Hasan 2015-10-30 03:24:56 +05:30
parent eb44aae3f5
commit 206841bc5d
2 changed files with 5 additions and 3 deletions

View File

@ -101,7 +101,7 @@
},
{
"cell_type": "code",
"execution_count": 14,
"execution_count": 4,
"metadata": {
"collapsed": false
},
@ -172,7 +172,7 @@
},
{
"cell_type": "code",
"execution_count": 15,
"execution_count": 5,
"metadata": {
"collapsed": false
},
@ -197,6 +197,7 @@
" assert_equal(func(''), '')\n",
" assert_equal(func('AABBCC'), 'AABBCC')\n",
" assert_equal(func('AAABCCDDDD'), 'A3BCCD4')\n",
" assert_equal(func('aaBCCEFFFFKKMMMMMMP taaammanlaarrrr seeeeeeeeek tooo'), 'aaBCCEF4KKM6P ta3mmanlaar4 se9k to3')\n",
" print('Success: test_compress')\n",
"\n",
"\n",
@ -211,7 +212,7 @@
},
{
"cell_type": "code",
"execution_count": 16,
"execution_count": 7,
"metadata": {
"collapsed": false
},

View File

@ -8,6 +8,7 @@ class TestCompress(object):
assert_equal(func(''), '')
assert_equal(func('AABBCC'), 'AABBCC')
assert_equal(func('AAABCCDDDD'), 'A3BCCD4')
assert_equal(func('aaBCCEFFFFKKMMMMMMP taaammanlaarrrr seeeeeeeeek tooo'), 'aaBCCEF4KKM6P ta3mmanlaar4 se9k to3')
print('Success: test_compress')