Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions book/recursion/binary-trees.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ Both recursive functions were discovered using the “pretend you are done” st
> ...
>
> Try flattening it in different ways. Can you make it so the values are in-order in the resulting list? Can you use the `foo` and `fooHelp` technique to build up an in-order list without using `(++)`?
>
> **Exercise 3:** Write a fold function for trees. The fold function does not need to guarantee a particular order of traversal.
>
> fold : (a -> b -> b) -> b -> Tree a -> b
Expand Down