interactive-coding-challenges/arrays_strings/compress/compress_solution.ipynb

213 lines
5.2 KiB
Python
Raw Normal View History

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook was prepared by [Donne Martin](http://donnemartin.com). Source and license info is on [GitHub](https://github.com/donnemartin/interactive-coding-challenges)."
2015-07-04 07:55:56 +08:00
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Solution Notebook"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Problem: Compress a string such that 'AAABCCDDDD' becomes 'A3BC2D4'. Only compress the string if it saves space.\n",
"\n",
"* [Constraints](#Constraints)\n",
"* [Test Cases](#Test-Cases)\n",
"* [Algorithm](#Algorithm)\n",
"* [Code](#Code)\n",
"* [Unit Test](#Unit-Test)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Constraints\n",
"\n",
2015-07-04 07:55:56 +08:00
"* Can we assume the string is ASCII?\n",
" * Yes\n",
" * Note: Unicode strings could require special handling depending on your language\n",
"* Is this case sensitive?\n",
" * Yes\n",
2016-06-13 11:06:12 +08:00
"* Can we use additional data structures? \n",
" * Yes\n",
"* Can we assume this fits in memory?\n",
" * Yes"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Test Cases\n",
"\n",
2015-07-04 07:55:56 +08:00
"* None -> None\n",
"* '' -> ''\n",
2015-07-04 07:55:56 +08:00
"* 'AABBCC' -> 'AABBCC'\n",
"* 'AAABCCDDDD' -> 'A3BC2D4'"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Algorithm\n",
"\n",
2016-02-09 19:49:29 +08:00
"* For each char in string\n",
" * If char is the same as last_char, increment count\n",
" * Else\n",
" * Append last_char and count to compressed_string\n",
" * last_char = char\n",
" * count = 1\n",
"* Append last_char and count to compressed_string\n",
"* If the compressed string size is < string size\n",
" * Return compressed string\n",
"* Else\n",
" * Return string\n",
"\n",
"Complexity:\n",
"* Time: O(n)\n",
2016-02-09 19:49:29 +08:00
"* Space: O(n)\n",
"\n",
"Complexity Note:\n",
"* Although strings are immutable in Python, appending to strings is optimized in CPython so that it now runs in O(n) and extends the string in-place. Refer to this [Stack Overflow post](http://stackoverflow.com/a/4435752)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Code"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"class CompressString(object):\n",
"\n",
" def compress(self, string):\n",
" if string is None or not string:\n",
" return string\n",
" result = ''\n",
" prev_char = string[0]\n",
" count = 0\n",
" for char in string:\n",
" if char == prev_char:\n",
" count += 1\n",
" else:\n",
" result += self._calc_partial_result(prev_char, count)\n",
" prev_char = char\n",
" count = 1\n",
" result += self._calc_partial_result(prev_char, count)\n",
" return result if len(result) < len(string) else string\n",
"\n",
" def _calc_partial_result(self, prev_char, count):\n",
" return prev_char + (str(count) if count > 1 else '')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
2015-07-04 07:55:56 +08:00
"## Unit Test"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
2015-07-04 07:55:56 +08:00
"Overwriting test_compress.py\n"
]
}
],
"source": [
2015-07-04 07:55:56 +08:00
"%%writefile test_compress.py\n",
"from nose.tools import assert_equal\n",
"\n",
2015-07-04 07:55:56 +08:00
"\n",
"class TestCompress(object):\n",
2015-07-12 03:34:14 +08:00
"\n",
" def test_compress(self, func):\n",
" assert_equal(func(None), None)\n",
" assert_equal(func(''), '')\n",
2015-07-04 07:55:56 +08:00
" assert_equal(func('AABBCC'), 'AABBCC')\n",
" assert_equal(func('AAABCCDDDDE'), 'A3BC2D4E')\n",
" assert_equal(func('BAAACCDDDD'), 'BA3C2D4')\n",
" assert_equal(func('AAABAACCDDDD'), 'A3BA2C2D4')\n",
" print('Success: test_compress')\n",
"\n",
2015-07-12 03:34:14 +08:00
"\n",
2015-07-04 07:55:56 +08:00
"def main():\n",
" test = TestCompress()\n",
" compress_string = CompressString()\n",
" test.test_compress(compress_string.compress)\n",
2015-07-04 07:55:56 +08:00
"\n",
2015-07-12 03:34:14 +08:00
"\n",
2015-07-04 07:55:56 +08:00
"if __name__ == '__main__':\n",
" main()"
]
},
{
"cell_type": "code",
"execution_count": 3,
2015-07-04 07:55:56 +08:00
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Success: test_compress\n"
]
}
],
"source": [
"%run -i test_compress.py"
]
}
],
"metadata": {
"kernelspec": {
2016-02-09 19:49:29 +08:00
"display_name": "Python 3",
"language": "python",
2016-02-09 19:49:29 +08:00
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
2016-02-09 19:49:29 +08:00
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
2016-02-09 19:49:29 +08:00
"pygments_lexer": "ipython3",
2016-06-13 11:06:12 +08:00
"version": "3.5.0"
}
},
"nbformat": 4,
"nbformat_minor": 0
}