LeetCode 1457. Pseudo-Palindromic Paths in a Binary Tree in F#
URL
https://leetcode.com/problems/pseudo-palindromic-paths-in-a-binary-tree/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/1457/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let pseudoPalindromicP...
syohex.hashnode.dev1 min read