LeetCode 98. Validate Binary Search Tree in F#
URL
https://leetcode.com/problems/validate-binary-search-tree/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0098/main.fsx
open System
type Tree =
| Leaf
| Node of int64 * Tree * Tree
let isValidBST (root:...
syohex.hashnode.dev1 min read