mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-03 16:08:02 +00:00
Tweak remove dupes solution to use a single node 'reference'.
This commit is contained in:
@@ -127,16 +127,16 @@
|
||||
"class MyLinkedList(LinkedList):\n",
|
||||
"\n",
|
||||
" def remove_dupes(self):\n",
|
||||
" seen_data = set()\n",
|
||||
" curr = self.head\n",
|
||||
" prev = None\n",
|
||||
" while curr is not None:\n",
|
||||
" if curr.data in seen_data:\n",
|
||||
" prev.next = curr.next\n",
|
||||
" if self.head is None:\n",
|
||||
" return\n",
|
||||
" node = self.head\n",
|
||||
" seen_data = set({node.data})\n",
|
||||
" while node.next is not None:\n",
|
||||
" if node.next.data in seen_data:\n",
|
||||
" node.next = node.next.next\n",
|
||||
" else:\n",
|
||||
" seen_data.add(curr.data)\n",
|
||||
" prev = curr\n",
|
||||
" curr = curr.next\n",
|
||||
" seen_data.add(node.next.data)\n",
|
||||
" node = node.next\n",
|
||||
"\n",
|
||||
" def remove_dupes_in_place(self):\n",
|
||||
" curr = self.head\n",
|
||||
|
||||
Reference in New Issue
Block a user