All Problems

Delete Node in a Linked List

Easylinked-listExpected: O(1) time, O(1) spaceInterview Context
linked-list

Problem

Given only access to a node in a singly linked list (not the tail), delete that node.

Loading...