LeetCode 486. Predict the Winner in F#
URL
Predict the Winner - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0486/main.fsx
open System
let predictTheWinner (nums: int list) : bool =
let rec predictTheWinner' (nums: int[]) left right =
...
syohex.hashnode.dev1 min read