Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to get all the unique elements of an array in C#

1 Answer

0 votes
using System;

public class Program
{
    public static void Main()
    {
        int[] arr = {4, 1, 2, 8, 9, 5, 1, 7, 8, 8, 8};
        int[] frequency = new int[10];
        
        for (int i = 0; i < arr.Length; i++) {
            frequency[arr[i]]++;
        }

        for (int i = 0; i < 10; i++) {
            if (frequency[i] == 1)
                Console.WriteLine("{0}: - {1} time", i, frequency[i]);
        }
    }
}




/*
run:

2: - 1 time
4: - 1 time
5: - 1 time
7: - 1 time
9: - 1 time

*/

 



answered Apr 18, 2022 by avibootz

Related questions

1 answer 112 views
2 answers 105 views
1 answer 134 views
1 answer 82 views
1 answer 110 views
1 answer 104 views
...