1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
class Solution { public ListNode removeElements(ListNode head, int val) { ListNode dummy = new ListNode(0); dummy.next = head;
ListNode cur = dummy;
while(cur.next != null){ if(cur.next.val == val){ cur.next = cur.next.next; } else{ cur = cur.next; } }
return dummy.next; } }
|