Loading...
Is this your company?
How would you check if a string is a palindrome?
Anonymous
what about? const checkPalindrome = string => string.split("").reverse().join("").toLowerCase() === string.toLowerCase()
public static bool IsPallindrome(string input) { string revs=""; for (int i = input.Length-1; i >=0; i--) { revs += input[i].ToString(); } if (revs == input) { return true; } return false; }
Check out your Company Bowl for anonymous work chats.
Get actionable career advice tailored to you by joining more bowls.
Stay ahead in opportunities and insider tips by following your dream companies.
Get personalized job recommendations and updates by starting your searches.