Fix typos (#191)

This commit is contained in:
delirious-lettuce
2017-05-15 22:30:12 -06:00
committed by Donne Martin
parent cd9e9654bc
commit 9f89a51aba
33 changed files with 71 additions and 71 deletions

View File

@@ -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",

View File

@@ -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",