LeetCode 100. Same Tree in F#
URL
https://leetcode.com/problems/same-tree/description/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/challenge/202402/same_tree/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let rec isSameTree (p: Tree) ...
syohex.hashnode.dev1 min read