Implement type IsPalindrome<T> to check whether a string or number is palindrome.
For example:
IsPalindrome<'abc'> // false
IsPalindrome<121> // trueImplement type IsPalindrome<T> to check whether a string or number is palindrome.
For example:
IsPalindrome<'abc'> // false
IsPalindrome<121> // true正在加载编辑器…