RosettaCodeData/Task/Palindrome-detection/Excel/palindrome-detection-1.excel
2023-07-01 13:44:08 -04:00

11 lines
188 B
Text

ISPALINDROME
=LAMBDA(s,
LET(
lcs, FILTERP(
LAMBDA(c, " " <> c)
)(
CHARS(LOWER(s))
),
CONCAT(lcs) = CONCAT(REVERSE(lcs))
)
)