This notebook was prepared by [Donne Martin](http://donnemartin.com). Source and license info is on [GitHub](https://github.com/donnemartin/interactive-coding-challenges).
Refer to the Solution Notebook. If you are stuck and need a hint, the solution notebook's algorithm discussion might be a good place to start.
In [ ]:
    
def compress_string(string):
    # TODO: Implement me
    pass
    
The following unit test is expected to fail until you solve the challenge.
In [ ]:
    
# %load test_compress.py
from nose.tools import assert_equal
class TestCompress(object):
    def test_compress(self, func):
        assert_equal(func(None), None)
        assert_equal(func(''), '')
        assert_equal(func('AABBCC'), 'AABBCC')
        assert_equal(func('AAABCCDDDD'), 'A3B1C2D4')
        print('Success: test_compress')
def main():
    test = TestCompress()
    test.test_compress(compress_string)
if __name__ == '__main__':
    main()
    
Review the Solution Notebook for a discussion on algorithms and code solutions.