mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-03 16:08:02 +00:00
Fix typos (#191)
This commit is contained in:
committed by
Donne Martin
parent
cd9e9654bc
commit
9f89a51aba
@@ -54,7 +54,7 @@
|
||||
"\n",
|
||||
"* `get` no matching key -> KeyError exception\n",
|
||||
"* `get` matching key -> value\n",
|
||||
"* `set` no matchin gkey -> new key, value\n",
|
||||
"* `set` no matching key -> new key, value\n",
|
||||
"* `set` matching key -> update value\n",
|
||||
"* `remove` no matching key -> KeyError exception\n",
|
||||
"* `remove` matching key -> remove key, value"
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
"\n",
|
||||
"* `get` no matching key -> KeyError exception\n",
|
||||
"* `get` matching key -> value\n",
|
||||
"* `set` no matchin gkey -> new key, value\n",
|
||||
"* `set` no matching key -> new key, value\n",
|
||||
"* `set` matching key -> update value\n",
|
||||
"* `remove` no matching key -> KeyError exception\n",
|
||||
"* `remove` matching key -> remove key, value"
|
||||
|
||||
@@ -164,7 +164,7 @@
|
||||
"* Scan each character\n",
|
||||
"* For each character:\n",
|
||||
" * Scan all [other] characters in the array\n",
|
||||
" * Exluding the current character from the scan is rather tricky in Python and results in a non-Pythonic solution\n",
|
||||
" * Excluding the current character from the scan is rather tricky in Python and results in a non-Pythonic solution\n",
|
||||
" * If there is a match, return False\n",
|
||||
"* Return True\n",
|
||||
"\n",
|
||||
|
||||
Reference in New Issue
Block a user