Easy
Given the head of a linked list and an integer k, remove all nodes whose value equals k and return the new head. (LeetCode calls this parameter val.)
Input: head = [1,2,6,3,4,5,6], k = 6 Output: [1,2,3,4,5]
Input: head = [7,7,7,7], k = 7 Output: []