3 lines
83 B
FSharp
3 lines
83 B
FSharp
let isPalindrome (s: string) =
|
|
let arr = s.ToCharArray()
|
|
arr = Array.rev arr
|