How to check if a string contains identical digits in C++

1 Answer

0 votes
#include <algorithm>
#include <iostream>
#include <string>
#include <set>

bool isStringContainIdenticalDigits(const std::string& str) {
    std::set<char> set(str.begin(), str.end());
        
    return set.size() == 1;
}

int main() {
    std::string str = "8888888";

    if (isStringContainIdenticalDigits(str)) {
        std::cout << "yes" << std::endl;
    } else {
        std::cout << "no" << std::endl;
    }
}



/*
run:
 
yes
 
*/

 



answered Jul 24, 2024 by avibootz

Related questions

1 answer 111 views
1 answer 169 views
1 answer 108 views
1 answer 115 views
1 answer 106 views
1 answer 111 views
1 answer 131 views
...