mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-05 00:48:03 +00:00
Fix typos (#191)
This commit is contained in:
committed by
Donne Martin
parent
cd9e9654bc
commit
9f89a51aba
@@ -77,7 +77,7 @@
|
||||
" * Else, recurse\n",
|
||||
" * Backtrack by:\n",
|
||||
" * Removing the just added current char from the current results\n",
|
||||
" * Incrementing the current char's acount in the dictionary\n",
|
||||
" * Incrementing the current char's count in the dictionary\n",
|
||||
"\n",
|
||||
"Complexity:\n",
|
||||
"* Time: O(n!)\n",
|
||||
|
||||
@@ -82,7 +82,7 @@
|
||||
" * This avoids duplicate results such as 'ab' and 'bc'\n",
|
||||
" * Backtrack by:\n",
|
||||
" * Removing the just added current char from the current results\n",
|
||||
" * Incrementing the current char's acount in the dictionary\n",
|
||||
" * Incrementing the current char's count in the dictionary\n",
|
||||
"\n",
|
||||
"Complexity:\n",
|
||||
"* Time: O(2^n)\n",
|
||||
|
||||
Reference in New Issue
Block a user