deno.land / x / masx200_leetcode_test@10.6.5 / valid-palindrome / index.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
function isPalindrome(s: string): boolean { const a = (s.match(/[A-Za-z0-9]+/g)?.join("") ?? "").toLowerCase();
const mid = Math.floor(a.length / 2); return a.slice(0, mid) === [...a.slice(a.length - mid)].reverse().join("");}export default isPalindrome;
masx200_leetcode_test

Version Info

Tagged at
a year ago