LeetCode 1704. Determine if String Halves Are Alike
URL
https://leetcode.com/problems/determine-if-string-halves-are-alike/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/1704/main.fsx
let halvesAreAlike (s: string) : bool =
let isVowel c =
let c' = System...
syohex.hashnode.dev1 min read