1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-20 23:16:56 +02:00

Remove extra credit from binary tree exercise

This commit is contained in:
Nicole LeGare 2025-04-16 16:30:28 -07:00
parent 5211436446
commit af75bde646

View File

@ -11,9 +11,6 @@ nodes in N's right subtree will contain larger values.
Implement the following types, so that the given tests pass.
Extra Credit: implement an iterator over a binary tree that returns the values
in order.
```rust,compile_fail,editable
{{#include exercise.rs:types}}