class Solution {
public:
string replaceSpaces(string &str) {
string newStr;
for(int i = 0; i < str.size(); i++)
{
if(str[i] == ' ')
{
newStr += "%20";
}
else
{
newStr += str[i];
}
}
return newStr;
}
};