1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-16 07:36:05 +02:00

Remove extra credit from binary tree exercise (#2713)

This commit is contained in:
Nicole L 2025-05-07 10:30:03 -07:00 committed by GitHub
parent 479d834a10
commit 428f51a106
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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}}