I just saw yet another question which is just a huge block of code. How did this get around the upgraded filter? The entire body of the question is here:
public class ArrayDuplicates
{
public static int[] RemoveDuplicates(int[] s)
{
HashSet<int> set = new HashSet<int>();
int[] result = new int[s.Length];
int j=0;
for(int i=0;i<s.Length;i++)
{
if (!set.Contains(s[i]))
{
set.Add(s[i]);
}
else
{
result[j++]=s[i];
}
}
return result;
}