LeetCode 1011. Capacity To Ship Packages Within D Days in F#
URL
Capacity To Ship Packages Within D Days - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/1011/main.fsx
let canShip (weights: int list) (capacity: int) (days: int) : bool =
let rec canShip' totalWeigh...
syohex.hashnode.dev1 min read