Nathan Coulas

Fast Bit Counting

fastbit CPP11 16 Aug, 2020 0.373s 10 points

Source Code

int setbits(unsigned long long NUM){
    return __builtin_popcountll(NUM);
}