Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 1.2 KB

File metadata and controls

13 lines (8 loc) · 1.2 KB

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