Why this is not working??
#include <bits/stdc++.h>
typedef unsigned long long int ll;
using namespace std;
multiset<string,greater<string> > arr;
multiset<int> brr;
void print(multiset<string,greater<string> > arr)
{
for(auto i = arr.begin(); i != arr.end(); i++)
{
cout << *i << " ";
Read more… (136 words)