class Solution { public: string replaceSpaces(string &str) { string ans; for(auto i : str) if(i == ' ') ans += "%20"; else ans += i; return ans; } };