All Problems

Remove Linked List Elements

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

Problem

Given the head of a linked list and an integer val, remove all nodes with that value.

Loading...