Given the following strings = new string[] { "a", "a", "a", "b", "b", "c", "c", "c", "c", "d" };
How would you replace the duplicate items to produce the following output: { "a", "Duplicate", "Duplicate", "b", "Duplicate", "c", "Duplicate", "Duplicate", "Duplicate", "d" }