Untitled

Anonymous
c_cpp
11/30/2022 11:16 AM
380 B
12
Indexable
#include <bits/stdc++.h>

using namespace std;

int main() {
    
    // General Solution
    
    vector<string> array;
    
    sort(array.begin(), array.end());
    
    
    for(int i=0; i< array.size(); i++) {
        
        sendmail(array[i]);
    }
    
    
    return 0;
}
Editor is loading...