LeetCode 941. Valid Mountain Array in F#
URL
https://leetcode.com/problems/valid-mountain-array/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0941/main.fsx
let ascend (nums: int list) =
let rec ascend' nums prev count =
match nums with
...
syohex.hashnode.dev1 min read