LeetCode 74. Search a 2D Matrix in F#
URL
https://leetcode.com/problems/search-a-2d-matrix/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0074/main.fsx
let searchMatrix (matrix: int list list) (target: int) : bool =
let rec toSingleDimentionArray ma...
syohex.hashnode.dev1 min read