Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复简单算法题不能被识别到项目的问题 #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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;