LeetCode 345. Reverse Vowels of a String in F#
URL
https://leetcode.com/problems/reverse-vowels-of-a-string/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0345/main.fsx
let reverseVowels (s: string) : string =
let isVowel (c: char) : bool =
let c = S...
syohex.hashnode.dev1 min read