mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-03 07:58:02 +00:00
Update array compress unit test to match solution and challenge notebooks.
This commit is contained in:
@@ -7,7 +7,7 @@ class TestCompress(object):
|
||||
assert_equal(func(None), None)
|
||||
assert_equal(func(''), '')
|
||||
assert_equal(func('AABBCC'), 'AABBCC')
|
||||
assert_equal(func('AAABCCDDDD'), 'A3BC2D4')
|
||||
assert_equal(func('AAABCCDDDDE'), 'A3BC2D4E')
|
||||
print('Success: test_compress')
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user