LeetCode 872. Leaf-Similar Trees in F#
URL
https://leetcode.com/problems/leaf-similar-trees/description/?envType=daily-question&envId=2024-01-09
Code
https://github.com/syohex/leetcode/blob/master/problems/0872/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let leafSimil...
syohex.hashnode.dev1 min read