Java > String-3 > mirrorEnds (CodingBat Solution)

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;
}


1 comment :

  1. How about:

    public 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

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact