MCPcopy Index your code
hub / github.com/BeeBombshell/Python-DSA / removeTail

Method removeTail

DSA/DoublyLinkedList.py:65–69  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

63
64 #method to remove element at tail
65 def removeTail(self):
66 temp = self.tail
67 self.tail = temp.prev
68 temp.prev.next = None
69 temp = None
70
71 #method to remove element at a specific position
72 def remove(self, pos):

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected