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-07-08 05:15:18 +08:00
" ## Problem: Compress a string such that ' AAABCCDDDD ' becomes ' A3B1C2D4 ' . Only compress the string if it saves space. \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 " ,
2015-07-06 18:30:00 +08:00
" * [Algorithm](#Algorithm) \n " ,
" * [Code](#Code) \n " ,
2015-06-25 06:20:20 +08:00
" * [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-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-07-08 05:15:18 +08:00
" * Yes "
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 " : [
2015-07-06 18:30:00 +08:00
" ## Algorithm \n " ,
2015-05-04 17:54:50 +08:00
" \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 " : [
2015-07-06 18:30:00 +08:00
" ## Code "
2015-05-04 17:54:50 +08:00
]
} ,
{
" 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-07-12 03:34:14 +08:00
" \n " ,
2015-06-25 06:20:20 +08:00
" # 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-07-12 03:34:14 +08:00
" \n " ,
" # If the compressed string size is greater than \n " ,
2015-07-08 05:15:18 +08:00
" # or equal to string size, return original 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-12 03:34:14 +08:00
" \n " ,
2015-07-05 20:54:49 +08:00
" # 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
]
} ,
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 " ,
2015-07-06 18:30:00 +08:00
" execution_count " : 2 ,
2015-06-25 06:20:20 +08:00
" 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 " ,
2015-07-12 03:34:14 +08:00
" \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-12 03:34:14 +08:00
" \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
" \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 " ,
2015-07-06 18:30:00 +08:00
" 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 " : [
" %r un -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
}