**Class:** Q2_01_Remove_Dups.cs **Method:** DeleteDupsA( ) Use of HashSet<int> instead of Dictionary simplifies better in C#: ``` var table = new HashSet<int>(); ``` Needed to change the Contains and Add methods below.
Class: Q2_01_Remove_Dups.cs
Method: DeleteDupsA( )
Use of HashSet instead of Dictionary simplifies better in C#:
Needed to change the Contains and Add methods below.