LeetCode 2331. Evaluate Boolean Binary Tree in F#
URL
Evaluate Boolean Binary Tree - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202405/evaluate_boolean_binary_tree/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let rec evaluateTree (r...
syohex.hashnode.dev1 min read