mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-14 22:18:46 +00:00
16 lines
510 B
Rust
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;
|