LeetCode 2785. Sort Vowels in a String in F#
URL
Sort Vowels in a String - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/2785/main.fsx
open System
let sortVowels (s: string) : string =
let isVowel (c: char) : bool =
match c with
|...
syohex.hashnode.dev1 min read