Skip to content

Fix formatting #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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