LeetCode 606. Construct String from Binary Tree in F#
URL
Construct String from Binary Tree - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202312/construct_string_from_binary_tree/main.fsx
open System
type TreeNode =
| Leaf
| Node of int * TreeNode ...
syohex.hashnode.dev1 min read