2017-03-30 17:43:16 +08:00
{
" cells " : [
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" This notebook was prepared by [Donne Martin](https://github.com/donnemartin). Source and license info is on [GitHub](https://github.com/donnemartin/interactive-coding-challenges). "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" # Challenge Notebook "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" ## Problem: Find the single different char between two strings. \n " ,
" \n " ,
" * [Constraints](#Constraints) \n " ,
" * [Test Cases](#Test-Cases) \n " ,
" * [Algorithm](#Algorithm) \n " ,
" * [Code](#Code) \n " ,
" * [Unit Test](#Unit-Test) \n " ,
" * [Solution Notebook](#Solution-Notebook) "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" ## Constraints \n " ,
" \n " ,
2017-04-12 20:23:40 +08:00
" * Assume two strings str1, str2, where str2 contains the same set of characters in str1 with one additional character. \n " ,
2017-03-30 17:43:16 +08:00
" * Can we assume the strings are ASCII? \n " ,
" * Yes \n " ,
" * Is case important? \n " ,
" * The strings are lower case \n " ,
" * Can we assume the inputs are valid? \n " ,
" * No, check for None \n " ,
" * Can we assume this fits memory? \n " ,
" * Yes "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" ## Test Cases \n " ,
" \n " ,
" * None input -> TypeError \n " ,
" * ' abcd ' , ' abcde ' -> ' e ' \n " ,
" * ' aaabbcdd ' , ' abdbacade ' -> ' e ' "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" ## Algorithm \n " ,
" \n " ,
2017-09-26 07:08:18 +08:00
" Refer to the [Solution Notebook](str_diff_solution.ipynb). If you are stuck and need a hint, the solution notebook ' s algorithm discussion might be a good place to start. "
2017-03-30 17:43:16 +08:00
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" ## Code "
]
} ,
{
" cell_type " : " code " ,
" execution_count " : null ,
" metadata " : {
" collapsed " : false
} ,
" outputs " : [ ] ,
" source " : [
" class Solution(object): \n " ,
" \n " ,
" def find_diff(self, s, t): \n " ,
" # TODO: Implement me \n " ,
" pass "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" ## Unit Test "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" **The following unit test is expected to fail until you solve the challenge.** "
]
} ,
{
" cell_type " : " code " ,
" execution_count " : null ,
" metadata " : {
" collapsed " : false
} ,
" outputs " : [ ] ,
" source " : [
" # %lo ad test_str_diff.py \n " ,
" from nose.tools import assert_equal, assert_raises \n " ,
" \n " ,
" \n " ,
" class TestFindDiff(object): \n " ,
" \n " ,
" def test_find_diff(self): \n " ,
" solution = Solution() \n " ,
2017-11-25 00:00:14 +08:00
" assert_raises(TypeError, solution.find_diff, None, None) \n " ,
2017-03-30 17:43:16 +08:00
" assert_equal(solution.find_diff( ' abcd ' , ' abcde ' ), ' e ' ) \n " ,
" assert_equal(solution.find_diff( ' aaabbcdd ' , ' abdbacade ' ), ' e ' ) \n " ,
" print( ' Success: test_find_diff ' ) \n " ,
" \n " ,
" \n " ,
" def main(): \n " ,
" test = TestFindDiff() \n " ,
" test.test_find_diff() \n " ,
" \n " ,
" \n " ,
" if __name__ == ' __main__ ' : \n " ,
" main() "
]
} ,
{
" cell_type " : " markdown " ,
" metadata " : { } ,
" source " : [
" ## Solution Notebook \n " ,
" \n " ,
2017-04-06 20:02:58 +08:00
" Review the [Solution Notebook](http://nbviewer.jupyter.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/str_diff/str_diff_solution.ipynb) for a discussion on algorithms and code solutions. "
2017-03-30 17:43:16 +08:00
]
}
] ,
" metadata " : {
" kernelspec " : {
" display_name " : " Python 3 " ,
" language " : " python " ,
" name " : " python3 "
} ,
" language_info " : {
" codemirror_mode " : {
" name " : " ipython " ,
" version " : 3
} ,
" file_extension " : " .py " ,
" mimetype " : " text/x-python " ,
" name " : " python " ,
" nbconvert_exporter " : " python " ,
" pygments_lexer " : " ipython3 " ,
" version " : " 3.5.0 "
}
} ,
" nbformat " : 4 ,
" nbformat_minor " : 0
}