LeetCode 1672. Richest Customer Wealth in F#
URL
https://leetcode.com/problems/richest-customer-wealth/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/1672/main.fsx
let maximumWealth (accounts: int list list) : int =
accounts |> List.map List.sum |> List.ma...
syohex.hashnode.dev1 min read