You are viewing a single comment's thread. Return to all comments →
def deleteNode(llist, position): if position == 0: return llist.next cur = llist while position > 1: cur = cur.next position -= 1 cur.next = cur.next.next return llist
Seems like cookies are disabled on this browser, please enable them to open this website
Delete a Node
You are viewing a single comment's thread. Return to all comments →