//! Assignment 9: Iterators (1/2). //! //! The primary goal of this assignment is to get used to iterators. //! //! You should fill out the `todo!()` placeholders in such a way that `/scripts/grade.sh 9` works fine. //! See `assignment09/*_grade.rs` and `/scripts/grade.sh 9` for the test script. //! //! To submit, run //! ```bash //! # At the cs220 home directory, //! ./scripts/submit.sh //! ``` //! and submit the generated `assignment09.zip` file in `target` directory. pub mod bigint; pub mod matmul; pub mod small_exercises; mod bigint_grade; mod matmul_grade; mod small_exercises_grade;