IsPalindrome hard #string

by jiangshan @jiangshanmeta

Take the Challenge

Implement type ```IsPalindrome``` to check whether a string or number is palindrome. For example: ```typescript IsPalindrome<'abc'> // false IsPalindrome<121> // true ```
Back Share your Solutions Check out Solutions