Merge pull request #60 from donnemartin/develop

Polish kth to last element challenge and solution
This commit is contained in:
Donne Martin 2016-06-12 23:28:07 -04:00 committed by GitHub
commit 1e9ffd3f33
2 changed files with 28 additions and 31 deletions

View File

@ -175,21 +175,21 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"display_name": "Python 3",
"language": "python",
"name": "python2"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.10"
"pygments_lexer": "ipython3",
"version": "3.5.0"
}
},
"nbformat": 4,

View File

@ -63,10 +63,10 @@
"source": [
"## Algorithm\n",
"\n",
"* Setup two pointers, current and previous\n",
"* Give current a headstart, incrementing it once if k = 1, twice if k = 2, ...\n",
"* Increment both pointers until current reaches the end\n",
"* Return the value of previous\n",
"* Setup two pointers, fast and slow\n",
"* Give fast a headstart, incrementing it once if k = 1, twice if k = 2, ...\n",
"* Increment both pointers until fast reaches the end\n",
"* Return the value of slow\n",
"\n",
"Complexity:\n",
"* Time: O(n)\n",
@ -103,26 +103,23 @@
"\n",
" def kth_to_last_elem(self, k):\n",
" if self.head is None:\n",
" return\n",
" if k >= len(self):\n",
" return\n",
" curr = self.head\n",
" prev = self.head\n",
" counter = 0\n",
" return None\n",
" fast = self.head\n",
" slow = self.head\n",
"\n",
" # Give current a headstart, incrementing it\n",
" # Give fast a headstart, incrementing it\n",
" # once for k = 1, twice for k = 2, etc\n",
" while counter < k:\n",
" curr = curr.next\n",
" counter += 1\n",
" if curr is None:\n",
" return\n",
" for _ in range(k):\n",
" fast = fast.next\n",
" # If k >= num elements, return None\n",
" if fast is None:\n",
" return None\n",
"\n",
" # Increment both pointers until current reaches the end\n",
" while curr.next is not None:\n",
" curr = curr.next\n",
" prev = prev.next\n",
" return prev.data"
" # Increment both pointers until fast reaches the end\n",
" while fast.next is not None:\n",
" fast = fast.next\n",
" slow = slow.next\n",
" return slow.data"
]
},
{
@ -212,21 +209,21 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"display_name": "Python 3",
"language": "python",
"name": "python2"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.10"
"pygments_lexer": "ipython3",
"version": "3.5.0"
}
},
"nbformat": 4,