LeetCode 997. Find the Town Judge in F#
URL
Find the Town Judge - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0997/main.fsx
let findJudge (n: int) (trust: (int * int) list) : int =
let rec trustCount trust acc =
match trust with
...
syohex.hashnode.dev1 min read