Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
#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
#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