Skip to content

Latest commit

 

History

History
 
 

04037-hard-ispalindrome

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

IsPalindrome hard #string

by jiangshan @jiangshanmeta

Take the Challenge

Implement type IsPalindrome<T> to check whether a string or number is palindrome.

For example:

IsPalindrome<'abc'> // false
IsPalindrome<121> // true

Back Share your Solutions Check out Solutions