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.

39,907 questions

51,839 answers

573 users

How to count the unique elements of an array in C

1 Answer

0 votes
#include <stdio.h>
 
int main()
{
    int arr[] = {4, 1, 2, 8, 9, 5, 1, 7, 8, 8, 6};
    int frequency[10] = {0};
    int size = sizeof(arr) / sizeof(arr[0]);
      
    for (int i = 0; i < size; i++) {
        frequency[arr[i]]++;
    }

    int count = 0;
    for (int i = 0; i < 10; i++) {
        if (frequency[i] == 1)
            count++;
    }
    printf("%d\n", count);
         
    return 0;
}
    
   
    
    
/*
run:
    
6
   
*/
 

 



answered Jul 6, 2020 by avibootz
edited Apr 18, 2022 by avibootz

Related questions

1 answer 114 views
1 answer 118 views
1 answer 86 views
1 answer 93 views
1 answer 104 views
1 answer 111 views
1 answer 110 views
...