Tagged Questions
4
votes
2answers
1k views
Extracting Leaf paths from n-ary tree in F#
Inspired by this question, I wanted to try my hand at the latest ponder this challenge, using F#
My approach is probably completely off course, but in the course of solving this problem, I'm trying ...
1
vote
6answers
317 views
F#: Recursive collect and filter over N-ary Tree
This is hurting my brain!
I want to recurse over a tree structure and collect all instances that match some filter into one list.
Here's a sample tree structure
type Tree =
| Node of int * Tree ...