class Solution { public: string replaceSpaces(string &str) { for(int c=0;c<str.size();c++) if(str[c]==’ ‘){str.replace(c,1,”%20”);} return str; } };