String for CP (DSA - 2)
Automatic removal of trailing and leading spaces in a string:
stringstream data structure handles the removal of trailing and leading spaces automatically
#include <sstream>
using namespace std;
void func(string s){
stringstream ss(s);
vector<std::...
madhavganesan.hashnode.dev3 min read