class Solution { public: string replaceSpaces(string &str) { string d; for(char c:str) { if(c==' ') d+="%20"; else d+=c; } return d; } };