How to initialize a HashSet from an array in C#

2 Answers

0 votes
using System;
using System.Collections.Generic;
 
class Program
{
    public static void addToSet(int[] arr, HashSet<int> hset) {
        for (int i = 0; i < arr.Length; i++) {
            hset.Add(arr[i]);
        }
      
    }
    static void Main() {
        int[] arr = {1, 5, 7, 3, 9, 8, 0, 2};
        
        HashSet<int> hset = new HashSet<int>();
 
        addToSet(arr, hset);
        
        foreach (var item in hset) {
           Console.Write(item + " ");
        }
    }
}
 
 
 
 
/*
run:
             
1 5 7 3 9 8 0 2 
             
*/

 



answered Dec 6, 2021 by avibootz
edited Dec 6, 2021 by avibootz
0 votes
using System;
using System.Collections.Generic;

class Program
{
    static void Main() {
        int[] arr = {4, 6, 12, 3, 100, 99, 7, 0, 1};
        
        var hashset = new HashSet<int>(arr);

        foreach (var item in hashset) {
           Console.Write(item + " ");
        }
    }
}





/*
run:

4 6 12 3 100 99 7 0 1 

*/

 



answered Dec 6, 2021 by avibootz

Related questions

1 answer 136 views
136 views asked Jul 18, 2022 by avibootz
1 answer 122 views
2 answers 228 views
2 answers 238 views
238 views asked Oct 28, 2019 by avibootz
1 answer 147 views
1 answer 113 views
113 views asked Feb 7, 2024 by avibootz
...