Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name = "cargotest"
version = "0.1.0"
edition = "2021"

[lib]
path = "exercises/lib.rs"

[dependencies]
serde = { version = "1.0", features = ["derive"] }
Expand Down
20 changes: 20 additions & 0 deletions exercises/easy/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
mod algorithm1;
mod algorithm10;
mod algorithm11;
mod algorithm12;
mod algorithm13;
mod algorithm14;
mod algorithm15;
mod algorithm16;
mod algorithm17;
mod algorithm18;
mod algorithm19;
mod algorithm2;
mod algorithm20;
mod algorithm3;
mod algorithm4;
mod algorithm5;
mod algorithm6;
mod algorithm7;
mod algorithm8;
mod algorithm9;
1 change: 1 addition & 0 deletions exercises/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mod easy;