Problem:
Given a string, look for a mirror image (backwards) string at both the beginning and end of the given string. In other words, zero or more characters at the very begining of the given string, and at the very end of the string in reverse order (possibly overlapping). For example, the string "abXYZba" has the mirror end "ab".
mirrorEnds("abXYZba") → "ab"
mirrorEnds("abca") → "a"
mirrorEnds("aba") → "aba"
Solution:
public String mirrorEnds(String string) { int len = string.length(); String fin = ""; String tmp1 = ""; String tmp2 = ""; for (int i = 0; i < len; i++) { tmp1 += string.substring(i,i+1); tmp2 = ""; for (int j = tmp1.length()-1; j >= 0; j--) { tmp2 += tmp1.substring(j,j+1); if (tmp2.equals(string.substring(len-i-1,len))) fin = tmp1; } } return fin; }
How about:
ReplyDeletepublic String mirrorEnds(String str) {
int len=str.length();
String fin="";
for(int i=0;i<len;i++){
if(str.charAt(i)==str.charAt(len-1-i)){
fin+=str.charAt(i);
}
else return fin;
}
return fin;
}
?
/Carl