mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-10 03:18:02 +00:00
Restored original compression challenge
This commit is contained in:
@@ -7,8 +7,7 @@ class TestCompress(object):
|
||||
assert_equal(func(None), None)
|
||||
assert_equal(func(''), '')
|
||||
assert_equal(func('AABBCC'), 'AABBCC')
|
||||
assert_equal(func('AAABCCDDDD'), 'A3BCCD4')
|
||||
assert_equal(func('aaBCCEFFFFKKMMMMMMP taaammanlaarrrr seeeeeeeeek tooo'), 'aaBCCEF4KKM6P ta3mmanlaar4 se9k to3')
|
||||
assert_equal(func('AAABCCDDDD'), 'A3B1C2D4')
|
||||
print('Success: test_compress')
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user