Files
cs220/src/assignments/assignment11/mod.rs
2023-08-26 00:30:22 +09:00

16 lines
510 B
Rust

//! Assignment 11: Familiarizing with smart pointers.
//!
//! You should fill out `todo!()` placeholders in such a way that `/scripts/grade.sh 11` works fine.
//! See `assignment11/*_grade.rs` and `/scripts/grade.sh 11` for the test script.
//! Run `/scripts/prepare-submissions.sh` and submit `/target/assignment11.zip` to <https://gg.kaist.ac.kr>.
pub mod graph;
pub mod linked_list;
pub mod mock_storage;
pub mod tv_room;
mod graph_grade;
mod linked_list_grade;
mod mock_storage_grade;
mod tv_room_grade;