LeetCode 1706. Where Will the Ball Fall in F#
URL
https://leetcode.com/problems/where-will-the-ball-fall/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/1706/main.fsx
let findBall (grid: int [,]) : int list =
let rows = Array2D.length1 grid
let cols = Ar...
syohex.hashnode.dev1 min read