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,990 questions

51,935 answers

573 users

How to find a number in array that appears once in C

1 Answer

0 votes
#include <stdio.h>
#include <stdbool.h>
 
bool number_exist_few_times(int arr[], int len, int number, int index) {
    for (int i = 0; i < len; i++) {
        if (arr[i] == number && i != index) {
            return true;
        }
    }
    return false;
}
 
int get_single_number(int arr[], int len) { 
    for (int i = 0; i < len; i++) {
        if (!number_exist_few_times(arr, len, arr[i], i))
            return arr[i];
    }
    return -1;
} 
   
int main() 
{ 
   int arr[] = {3, 2, 1, 2, 3, 3, 1, 5, 9, 7, 7, 9, 9}; 
   int len = sizeof(arr) / sizeof(arr[0]); 
     
   printf("%i", get_single_number(arr, len)); 
} 
 
 
 
/*
run:
 
5
 
*/

 



answered Apr 25, 2019 by avibootz
edited Apr 25, 2019 by avibootz

Related questions

1 answer 170 views
1 answer 88 views
1 answer 82 views
1 answer 70 views
1 answer 78 views
...