100508. Find the Lexicographically Largest String From the Box I

Поделиться
HTML-код
  • Опубликовано: 2 янв 2025

Комментарии • 1

  • @Code-Review-c91
    @Code-Review-c91  5 дней назад

    #include
    using namespace std;

    class Solution {
    public:
    string answerString(string word, int numFriends) {
    int N = word.size();
    if(numFriends ==1) return word;
    char c = *max_element(word.begin(), word.end());
    string max_string = "";
    for(int pos=0; pos