LeetCode 108. Convert Sorted Array to Binary Search Tree in F#
URL
https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0108/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let sortedArrayToBST ...
syohex.hashnode.dev1 min read