mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
Fixed typo for func() calls
This commit is contained in:
parent
358791fbbc
commit
d0b8b5fe86
|
@ -108,10 +108,10 @@
|
|||
"\n",
|
||||
"class UnitTest (object):\n",
|
||||
" def testReverseWords(self):\n",
|
||||
" assert_equal(func('the sun is hot'), 'eht nus si toh')\n",
|
||||
" assert_equal(func(''), None)\n",
|
||||
" assert_equal(func('123 456 789'), '321 654 987')\n",
|
||||
" assert_equal(func('magic'), 'cigam')\n",
|
||||
" assert_equal(reverse_words('the sun is hot'), 'eht nus si toh')\n",
|
||||
" assert_equal(reverse_words(''), None)\n",
|
||||
" assert_equal(reverse_words('123 456 789'), '321 654 987')\n",
|
||||
" assert_equal(reverse_words('magic'), 'cigam')\n",
|
||||
" print('Success: reverse_words')\n",
|
||||
" \n",
|
||||
"def main():\n",
|
||||
|
@ -147,7 +147,7 @@
|
|||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython2",
|
||||
"version": "2.7.6"
|
||||
"version": "2.7.10"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
|
|
Loading…
Reference in New Issue
Block a user