diff --git a/linked_lists/palindrome/palindrome_solution.ipynb b/linked_lists/palindrome/palindrome_solution.ipynb index af781d4..0f4403f 100644 --- a/linked_lists/palindrome/palindrome_solution.ipynb +++ b/linked_lists/palindrome/palindrome_solution.ipynb @@ -62,6 +62,8 @@ "## Algorithm\n", "\n", "* Reverse the linked list\n", + " * Iterate through the current linked list\n", + " * Insert to front the current node into a new linked list\n", "* Compare the reversed list with the original list\n", " * Only need to compare the first half\n", "\n",