From f8997bf0496c3ce72e3854e55e49787c5f54e3a4 Mon Sep 17 00:00:00 2001 From: Hubert Shelley <46239302+hubertshelley@users.noreply.github.com> Date: Sun, 9 Feb 2025 20:09:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=AE=80=E5=8D=95?= =?UTF-8?q?=E7=AE=97=E6=B3=95=E9=A2=98=E4=B8=8D=E8=83=BD=E8=A2=AB=E8=AF=86?= =?UTF-8?q?=E5=88=AB=E5=88=B0=E9=A1=B9=E7=9B=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 ++ exercises/easy/mod.rs | 20 ++++++++++++++++++++ exercises/lib.rs | 1 + 3 files changed, 23 insertions(+) create mode 100644 exercises/easy/mod.rs create mode 100644 exercises/lib.rs diff --git a/Cargo.toml b/Cargo.toml index bb43eac5..85344ae0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,8 @@ name = "cargotest" version = "0.1.0" edition = "2021" +[lib] +path = "exercises/lib.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } diff --git a/exercises/easy/mod.rs b/exercises/easy/mod.rs new file mode 100644 index 00000000..a540830e --- /dev/null +++ b/exercises/easy/mod.rs @@ -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; diff --git a/exercises/lib.rs b/exercises/lib.rs new file mode 100644 index 00000000..ee9cf039 --- /dev/null +++ b/exercises/lib.rs @@ -0,0 +1 @@ +mod easy;