LeetCode 763. Partition Labels in F#
URL
https://leetcode.com/problems/partition-labels/
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0763/main.fsx
let partitionLabels (s: string) : int list =
let rec lastPos xs m =
match xs with
|...
syohex.hashnode.dev1 min read