Tostr(int n) : useful function to change integer / long long to string !!

string tostr(int n)
{
    stringstream ss;
    ss<<n;
    string s=ss.str();
    return s;
}

Comments

Popular posts from this blog

Two Pointers Technique & Binary Search For Beginners

HackerRank: Poisonous Plants ( Stacks, DS )

HackerRank: Find Maximum Index Product ( Stack, DS, Histogram Logic )