How to initialize a set with int array in C#

1 Answer

0 votes
using System;
using System.Collections.Generic;
  
public class Program
{
    public static void Main(string[] args)
    {
        int[] arr = { 14, 0, 8, 12, 9, 3, 7, 6 };
        
        HashSet<int> set = new HashSet<int>();
        
        foreach (int item in arr) {
             set.Add(item);
        }
        
        Console.WriteLine(string.Join(" ", set));   
    }
}
  
  
  
  
/*
run:
 
14 0 8 12 9 3 7 6
    
*/

 



answered Oct 1, 2022 by avibootz

Related questions

2 answers 169 views
1 answer 142 views
5 answers 450 views
450 views asked Mar 3, 2017 by avibootz
1 answer 106 views
106 views asked Oct 1, 2022 by avibootz
1 answer 122 views
3 answers 180 views
180 views asked Jul 16, 2022 by avibootz
...