String-1 > extraEnd
public String extraEnd(String str) {
String temp = str.substring(str.length() - 2);
return temp + temp + temp;
}
public String extraEnd(String str) {
String temp = str.substring(str.length() - 2);
return temp + temp + temp;
}