Remove Linked List Elements

Try to solve the Remove Linked List Elements problem.

Statement

You are given the head of a linked list and an integer k. Remove all nodes from the linked list where the node’s value equals k, and return the head of the updated list.

Constraints:

  • The number of nodes in the linked list is in the range [0,103][0, 10^3].

  • 1≤1 \leq Node.data ≤50\leq 50

  • 0≤0 \leq k ≤50\leq 50

Examples

Level up your interview prep. Join Educative to access 80+ hands-on prep courses.