public class Solution {
public String replaceSpace(StringBuffer str) {
int count = 0;
int oldLength = str.length();
for(int i = 0; i < oldLength; i++){
if(str.charAt(i) == ' '){
count++;
}
}
int newLength = oldLength + count * 2;
str.setLength(newLength);
int fast = oldLength - 1, slow = newLength - 1;
for(; fast >= 0; fast--){
if(str.charAt(fast) == ' '){
str.setCharAt(slow--, '0');
str.setCharAt(slow--, '2');
str.setCharAt(slow--, '%');
}else{
str.setCharAt(slow--, str.charAt(fast));
}
}
return str.toString();
}
}