LeetCode 1672. Richest Customer Wealth in F#

URL

leetcode.com/problems/richest-customer-wealth

Code

github.com/syohex/dotnet-study/blob/master/..

let maximumWealth (accounts: int list list) : int =
    accounts |> List.map List.sum |> List.max