Given a string, determine if its a palindrome. Use any language
Anonymous
public boolean isPalindrom(String text) { StringBuffer stringBuffer = new StringBuffer(text); return stringBuffer.reverse().toString().equals(text); } There are many ways to solve this question.
Check out your Company Bowl for anonymous work chats.