Skip to content

Instantly share code, notes, and snippets.

@kronar
Created March 1, 2015 16:02
Show Gist options
  • Save kronar/d19686ce05a978330f4e to your computer and use it in GitHub Desktop.
Save kronar/d19686ce05a978330f4e to your computer and use it in GitHub Desktop.
Reverse implementation
public class AAA implements StringMirror {
@Override
public String mirror(String input) {
return new StringBuilder(input).reverse().toString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment