Remove bad elements in Linked List

Linked-List Contest Easy

Given the head of a Linked List and an integer val, remove all nodes having value val and return the head of the modified list.

Constraints

  • 1 <= Number of nodes in the Linked List <= 105
  • -104 <= ListNode.val <= 104
  • -104 <= val <= 104


Company Tags

[ ]