LeetCode 766. Toeplitz Matrix in F#
URL
https://leetcode.com/problems/toeplitz-matrix/
Code
https://hashnode.com/draft/635f2a27b7bb8c3f4ee4325c
let isToeplitzMatrix (matrix: int [,]) : bool =
let rec check row col v rows cols (matrix: int [,]) =
if row >= rows || col >= col...
syohex.hashnode.dev1 min read