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 118 views
1 answer 177 views
1 answer 116 views
1 answer 123 views
1 answer 112 views
1 answer 127 views
1 answer 145 views
...