Fixed typo: recursive -> recursion.

This commit is contained in:
Donne Martin
2015-05-14 07:03:05 -04:00
parent 3774bc2e02
commit dc580357c5

View File

@@ -46,7 +46,7 @@
"source": [
"## Algorithm\n",
"\n",
"We could solve this with an iterative or a recursive algorithm, both are well suited for this exercise. We'll use a recursive algorithm for practice with recursive. Note this takes an extra space of O(m) where m is the recursion depth.\n",
"We could solve this with an iterative or a recursive algorithm, both are well suited for this exercise. We'll use a recursive algorithm for practice with recursion. Note this takes an extra space of O(m) where m is the recursion depth.\n",
"\n",
"* Test for error cases\n",
"* Careful with adding if the lists differ\n",