1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cs/delete-nodes-from-linked-list-present-in-array.cs
2024-09-06 19:08:55 +02:00

21 lines
524 B
C#

using System.Collections.Generic;
public class Solution {
public ListNode ModifiedList(int[] nums, ListNode head) {
var uniqueNums = new HashSet<int>(nums);
var node = head;
while (node.next != null) {
if (uniqueNums.Contains(node.next.val)) {
node.next = node.next.next;
} else {
node = node.next;
}
}
if (uniqueNums.Contains(head.val)) {
return head.next;
}
return head;
}
}