class Solution { public String replaceSpace(String s) { if(s.length()==0) { return s; } StringBuilder x = new StringBuilder(); for(int i=0;i