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

51,831 answers

573 users

How to find an element that appears once in a vector of elements that appears three times in C++

2 Answers

0 votes
#include <unordered_map>
#include <iostream>
#include <vector>

int findElementThatAppearsOnceInArray(std::vector<int>& vec) {
    std::unordered_map<int, int> map;
        
    for (auto x: vec) {
        map[x]++;
    }

    for (auto x: map) {
        if (x.second == 1) {
            return x.first;
        }
    }
    
    return -1;
}


int main() {
    std::vector<int> vec {3, 5, 5, 2, 7, 3, 2, 8, 8, 3, 2, 5, 8};
         
    std::cout << findElementThatAppearsOnceInArray((vec));
}



/*
run:

7

*/

 



answered Jul 8, 2024 by avibootz
0 votes
#include <iostream>
#include <vector>

int findElementThatAppearsOnceInArray(std::vector<int>& vec) {
    int result = 0;

    for (int i = 0; i < 32; ++i) {
        int sum = 0;
        for (const int num : vec) {
            sum += num >> i & 1;
        }
        sum %= 3;
        result |= sum << i;
    }

    return result;
}

int main() {
    std::vector<int> vec {3, 5, 5, 2, 7, 3, 2, 8, 8, 3, 2, 5, 8};
         
    std::cout << findElementThatAppearsOnceInArray((vec));
}



/*
run:

7

*/

 



answered Jul 8, 2024 by avibootz
...