Files
cs220/src/assignments/assignment10/mod.rs
Janggun Lee af889722bc Cleanups
2024-07-30 15:26:33 +09:00

19 lines
568 B
Rust

//! Assignment 10: Iterators (2/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 10` works
//! fine. See `assignment10/*_grade.rs` and `/scripts/grade.sh 10` for the test script.
//!
//! To submit, run
//! ```bash
//! # At the cs220 home directory,
//! ./scripts/submit.sh
//! ```
//! and submit the generated `assignment10.zip` file in `target` directory.
pub mod labyrinth;
pub mod small_exercises;
mod labyrinth_grade;
mod small_exercises_grade;