Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 372 Bytes

File metadata and controls

27 lines (14 loc) · 372 Bytes

Palindrome Checker

Write a function that checks if a given string is a palindrome.
A palindrome is a word that reads the same backward as forward.


Example:

Input: "racecar" Output: true

Input: "hello" Output: false


Problem added by

SaadQasim19

Solution

Click here to see the solution