From dc580357c5715fdd4dd49b649d5353d5f2f5050e Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Thu, 14 May 2015 07:03:05 -0400 Subject: [PATCH] Fixed typo: recursive -> recursion. --- linked-lists/add-reverse.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linked-lists/add-reverse.ipynb b/linked-lists/add-reverse.ipynb index ae769f8..8a0190e 100644 --- a/linked-lists/add-reverse.ipynb +++ b/linked-lists/add-reverse.ipynb @@ -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",