2015-05-04 17:54:50 +08:00
{
"cells": [
2015-06-18 04:36:55 +08:00
{
"cell_type": "markdown",
"metadata": {},
"source": [
2015-07-05 19:59:00 +08:00
"<small><i>This notebook was prepared by [Donne Martin](http://donnemartin.com). Source and license info is on [GitHub](https://github.com/donnemartin/interactive-coding-challenges).</i></small>"
2015-07-04 07:55:56 +08:00
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Solution Notebook"
2015-06-18 04:36:55 +08:00
]
},
2015-05-04 17:54:50 +08:00
{
"cell_type": "markdown",
"metadata": {},
"source": [
2015-05-09 04:48:22 +08:00
"## Problem: Compress a string such that 'AAABCCDDDD' becomes 'A3B1C2D4'\n",
2015-05-04 17:54:50 +08:00
"\n",
2015-06-30 17:55:58 +08:00
"* [Constraints](#Constraints)\n",
2015-05-04 17:54:50 +08:00
"* [Test Cases](#Test-Cases)\n",
"* [Algorithm: List](#Algorithm:-List)\n",
"* [Code: List](#Code:-List)\n",
"* [Algorithm: Byte Array](#Algorithm:-Byte-Array)\n",
2015-06-25 06:20:20 +08:00
"* [Code: Byte array](#Code:-Byte-Array)\n",
"* [Unit Test](#Unit-Test)"
2015-05-04 17:54:50 +08:00
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
2015-06-28 19:13:27 +08:00
"## Constraints\n",
2015-05-04 17:54:50 +08:00
"\n",
2015-07-06 18:03:09 +08:00
2015-07-04 07:55:56 +08:00
"* Can we assume the string is ASCII?\n",
2015-06-25 06:20:20 +08:00
" * Yes\n",
" * Note: Unicode strings could require special handling depending on your language\n",
2015-05-04 17:54:50 +08:00
"* Can you use additional data structures? \n",
" * Yes\n",
"* Is this case sensitive?\n",
2015-05-09 04:48:22 +08:00
" * Yes\n",
"* Do you compress even if it doesn't save space?\n",
" * No"
2015-05-04 17:54:50 +08:00
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Test Cases\n",
"\n",
2015-07-04 07:55:56 +08:00
"* None -> None\n",
2015-05-04 17:54:50 +08:00
"* '' -> ''\n",
2015-07-04 07:55:56 +08:00
"* 'AABBCC' -> 'AABBCC'\n",
2015-05-04 17:54:50 +08:00
"* 'AAABCCDDDD' -> 'A3B1C2D4'"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Algorithm: List\n",
"\n",
2015-07-05 20:54:49 +08:00
"Since Python strings are immutable, we'll use a list of characters to build the compressed string representation. We'll then convert the list to a string.\n",
2015-05-04 17:54:50 +08:00
"\n",
2015-06-25 06:20:20 +08:00
"* Calculate the size of the compressed string\n",
2015-07-05 20:54:49 +08:00
" * Note the constraint about compressing only if it saves space\n",
2015-05-04 17:54:50 +08:00
"* If the compressed string size is >= string size, return string\n",
"* Create compressed_string\n",
2015-06-25 06:20:20 +08:00
" * For each char in string\n",
" * If char is the same as last_char, increment count\n",
" * Else\n",
" * Append last_char to compressed_string\n",
" * append count to compressed_string\n",
" * count = 1\n",
" * last_char = char\n",
2015-05-04 17:54:50 +08:00
" * Append last_char to compressed_string\n",
2015-06-25 06:20:20 +08:00
" * Append count to compressed_string\n",
" * Return compressed_string\n",
2015-05-04 17:54:50 +08:00
"\n",
"Complexity:\n",
"* Time: O(n)\n",
2015-07-05 20:54:49 +08:00
"* Space: O(n)"
2015-05-04 17:54:50 +08:00
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Code: List"
]
},
{
"cell_type": "code",
2015-06-25 06:20:20 +08:00
"execution_count": 1,
2015-05-04 17:54:50 +08:00
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def compress_string(string):\n",
" if string is None or len(string) == 0:\n",
" return string\n",
2015-06-25 06:20:20 +08:00
" \n",
" # Calculate the size of the compressed string\n",
2015-05-04 17:54:50 +08:00
" size = 0\n",
" last_char = string[0]\n",
" for char in string:\n",
2015-06-25 06:20:20 +08:00
" if char != last_char:\n",
2015-05-04 17:54:50 +08:00
" size += 2\n",
" last_char = char\n",
" size += 2\n",
2015-06-25 06:20:20 +08:00
" \n",
" # If the compressed string size is greater than \n",
" # or equal to string size, return string\n",
2015-05-04 17:54:50 +08:00
" if size >= len(string):\n",
" return string\n",
2015-06-25 06:20:20 +08:00
"\n",
" # Create compressed_string\n",
2015-05-04 17:54:50 +08:00
" compressed_string = list()\n",
" count = 0\n",
" last_char = string[0]\n",
" for char in string:\n",
" if char == last_char:\n",
" count += 1\n",
" else:\n",
" compressed_string.append(last_char)\n",
" compressed_string.append(str(count))\n",
" count = 1\n",
" last_char = char\n",
" compressed_string.append(last_char)\n",
" compressed_string.append(str(count))\n",
2015-07-05 20:54:49 +08:00
" \n",
" # Convert the characters in the list to a string\n",
2015-06-25 06:20:20 +08:00
" return \"\".join(compressed_string)"
2015-05-04 17:54:50 +08:00
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Algorithm: Byte Array\n",
"\n",
2015-07-05 20:54:49 +08:00
"As a bonus solution, we can also solve this problem with a byte array.\n",
2015-07-04 07:55:56 +08:00
"\n",
2015-07-05 20:54:49 +08:00
"The byte array algorithm similar when using a list, except we will need to work with the bytearray's character codes (using the function ord) instead of the characters as when we implemented this solution with a list.\n",
2015-05-04 17:54:50 +08:00
"\n",
"Complexity:\n",
"* Time: O(n)\n",
2015-07-05 20:54:49 +08:00
"* Space: O(n)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Code: Byte Array"
2015-05-04 17:54:50 +08:00
]
},
{
"cell_type": "code",
2015-06-25 06:20:20 +08:00
"execution_count": 2,
2015-05-04 17:54:50 +08:00
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
2015-06-22 09:42:24 +08:00
"def compress_string_alt(string):\n",
2015-05-04 17:54:50 +08:00
" if string is None or len(string) == 0:\n",
" return string\n",
2015-06-25 06:20:20 +08:00
" \n",
" # Calculate the size of the compressed string\n",
2015-05-04 17:54:50 +08:00
" size = 0\n",
" last_char_code = string[0]\n",
" for char_code in string:\n",
2015-06-25 06:20:20 +08:00
" if char_code != last_char_code:\n",
2015-05-04 17:54:50 +08:00
" size += 2\n",
" last_char_code = char_code\n",
" size += 2\n",
2015-06-25 06:20:20 +08:00
" \n",
" # If the compressed string size is greater than \n",
" # or equal to string size, return string \n",
2015-05-04 17:54:50 +08:00
" if size >= len(string):\n",
" return string\n",
2015-06-25 06:20:20 +08:00
" \n",
" # Create compressed_string\n",
2015-05-04 17:54:50 +08:00
" compressed_string = bytearray(size)\n",
" pos = 0\n",
" count = 0\n",
" last_char_code = string[0]\n",
" for char_code in string:\n",
" if char_code == last_char_code:\n",
" count += 1\n",
" else:\n",
" compressed_string[pos] = last_char_code\n",
2015-06-25 06:20:20 +08:00
" compressed_string[pos+1] = ord(str(count))\n",
2015-05-04 17:54:50 +08:00
" pos += 2\n",
" count = 1\n",
" last_char_code = char_code\n",
" compressed_string[pos] = last_char_code\n",
2015-06-25 06:20:20 +08:00
" compressed_string[pos+1] = ord(str(count))\n",
2015-07-05 20:54:49 +08:00
" return str(compressed_string)"
2015-06-25 06:20:20 +08:00
]
},
2015-06-26 05:36:09 +08:00
{
"cell_type": "markdown",
"metadata": {},
"source": [
2015-07-04 07:55:56 +08:00
"## Unit Test"
2015-06-26 05:36:09 +08:00
]
},
2015-06-25 06:20:20 +08:00
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
2015-07-04 07:55:56 +08:00
"Overwriting test_compress.py\n"
2015-06-25 06:20:20 +08:00
]
}
],
"source": [
2015-07-04 07:55:56 +08:00
"%%writefile test_compress.py\n",
2015-06-25 06:20:20 +08:00
"from nose.tools import assert_equal\n",
2015-05-04 17:54:50 +08:00
"\n",
2015-07-04 07:55:56 +08:00
"\n",
"class TestCompress(object):\n",
" \n",
2015-06-25 06:20:20 +08:00
" 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",
2015-06-25 06:20:20 +08:00
" assert_equal(func('AAABCCDDDD'), 'A3B1C2D4')\n",
" print('Success: test_compress')\n",
"\n",
2015-07-04 07:55:56 +08:00
"def main():\n",
" test = TestCompress()\n",
2015-06-25 06:20:20 +08:00
" test.test_compress(compress_string)\n",
2015-07-04 07:55:56 +08:00
" try:\n",
" test.test_compress(compress_string_alt)\n",
" except NameError:\n",
" # Alternate solutions are only defined\n",
" # in the solutions file\n",
" pass\n",
"\n",
"if __name__ == '__main__':\n",
" main()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Success: test_compress\n",
"Success: test_compress\n"
]
}
],
"source": [
"%run -i test_compress.py"
2015-05-04 17:54:50 +08:00
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
2015-06-18 04:36:55 +08:00
"version": "2.7.10"
2015-05-04 17:54:50 +08:00
}
},
"nbformat": 4,
"nbformat_minor": 0
}