diff --git a/2022/day_1/input.txt b/2022/day_01/input.txt similarity index 100% rename from 2022/day_1/input.txt rename to 2022/day_01/input.txt diff --git a/2022/day_1/rust/Cargo.toml b/2022/day_01/rust/Cargo.toml similarity index 100% rename from 2022/day_1/rust/Cargo.toml rename to 2022/day_01/rust/Cargo.toml diff --git a/2022/day_1/rust/src/main.rs b/2022/day_01/rust/src/main.rs similarity index 100% rename from 2022/day_1/rust/src/main.rs rename to 2022/day_01/rust/src/main.rs diff --git a/2022/day_1/rust/src/quick_sort.rs b/2022/day_01/rust/src/quick_sort.rs similarity index 100% rename from 2022/day_1/rust/src/quick_sort.rs rename to 2022/day_01/rust/src/quick_sort.rs diff --git a/2022/day_2/input.txt b/2022/day_02/input.txt similarity index 100% rename from 2022/day_2/input.txt rename to 2022/day_02/input.txt diff --git a/2022/day_2/rust/Cargo.toml b/2022/day_02/rust/Cargo.toml similarity index 100% rename from 2022/day_2/rust/Cargo.toml rename to 2022/day_02/rust/Cargo.toml diff --git a/2022/day_2/rust/src/main.rs b/2022/day_02/rust/src/main.rs similarity index 100% rename from 2022/day_2/rust/src/main.rs rename to 2022/day_02/rust/src/main.rs diff --git a/2022/day_3/input.txt b/2022/day_03/input.txt similarity index 100% rename from 2022/day_3/input.txt rename to 2022/day_03/input.txt diff --git a/2022/day_3/rust/Cargo.toml b/2022/day_03/rust/Cargo.toml similarity index 100% rename from 2022/day_3/rust/Cargo.toml rename to 2022/day_03/rust/Cargo.toml diff --git a/2022/day_3/rust/src/main.rs b/2022/day_03/rust/src/main.rs similarity index 100% rename from 2022/day_3/rust/src/main.rs rename to 2022/day_03/rust/src/main.rs diff --git a/2022/day_4/input.txt b/2022/day_04/input.txt similarity index 100% rename from 2022/day_4/input.txt rename to 2022/day_04/input.txt diff --git a/2022/day_4/rust/Cargo.toml b/2022/day_04/rust/Cargo.toml similarity index 100% rename from 2022/day_4/rust/Cargo.toml rename to 2022/day_04/rust/Cargo.toml diff --git a/2022/day_4/rust/src/main.rs b/2022/day_04/rust/src/main.rs similarity index 100% rename from 2022/day_4/rust/src/main.rs rename to 2022/day_04/rust/src/main.rs diff --git a/2022/day_5/input.txt b/2022/day_05/input.txt similarity index 100% rename from 2022/day_5/input.txt rename to 2022/day_05/input.txt diff --git a/2022/day_5/rust/Cargo.toml b/2022/day_05/rust/Cargo.toml similarity index 100% rename from 2022/day_5/rust/Cargo.toml rename to 2022/day_05/rust/Cargo.toml diff --git a/2022/day_5/rust/src/crates_iter.rs b/2022/day_05/rust/src/crates_iter.rs similarity index 100% rename from 2022/day_5/rust/src/crates_iter.rs rename to 2022/day_05/rust/src/crates_iter.rs diff --git a/2022/day_5/rust/src/main.rs b/2022/day_05/rust/src/main.rs similarity index 100% rename from 2022/day_5/rust/src/main.rs rename to 2022/day_05/rust/src/main.rs diff --git a/2022/day_5/rust/src/procedure.rs b/2022/day_05/rust/src/procedure.rs similarity index 100% rename from 2022/day_5/rust/src/procedure.rs rename to 2022/day_05/rust/src/procedure.rs diff --git a/2022/day_5/rust/src/supply_stacks.rs b/2022/day_05/rust/src/supply_stacks.rs similarity index 100% rename from 2022/day_5/rust/src/supply_stacks.rs rename to 2022/day_05/rust/src/supply_stacks.rs diff --git a/2022/day_6/input.txt b/2022/day_06/input.txt similarity index 100% rename from 2022/day_6/input.txt rename to 2022/day_06/input.txt diff --git a/2022/day_6/rust/Cargo.toml b/2022/day_06/rust/Cargo.toml similarity index 100% rename from 2022/day_6/rust/Cargo.toml rename to 2022/day_06/rust/Cargo.toml diff --git a/2022/day_6/rust/src/main.rs b/2022/day_06/rust/src/main.rs similarity index 100% rename from 2022/day_6/rust/src/main.rs rename to 2022/day_06/rust/src/main.rs diff --git a/2022/day_7/input.txt b/2022/day_07/input.txt similarity index 100% rename from 2022/day_7/input.txt rename to 2022/day_07/input.txt diff --git a/2022/day_7/rust/Cargo.toml b/2022/day_07/rust/Cargo.toml similarity index 100% rename from 2022/day_7/rust/Cargo.toml rename to 2022/day_07/rust/Cargo.toml diff --git a/2022/day_7/rust/src/file_system/directory.rs b/2022/day_07/rust/src/file_system/directory.rs similarity index 100% rename from 2022/day_7/rust/src/file_system/directory.rs rename to 2022/day_07/rust/src/file_system/directory.rs diff --git a/2022/day_7/rust/src/file_system/file.rs b/2022/day_07/rust/src/file_system/file.rs similarity index 100% rename from 2022/day_7/rust/src/file_system/file.rs rename to 2022/day_07/rust/src/file_system/file.rs diff --git a/2022/day_7/rust/src/file_system/mod.rs b/2022/day_07/rust/src/file_system/mod.rs similarity index 100% rename from 2022/day_7/rust/src/file_system/mod.rs rename to 2022/day_07/rust/src/file_system/mod.rs diff --git a/2022/day_7/rust/src/file_system/system.rs b/2022/day_07/rust/src/file_system/system.rs similarity index 100% rename from 2022/day_7/rust/src/file_system/system.rs rename to 2022/day_07/rust/src/file_system/system.rs diff --git a/2022/day_7/rust/src/main.rs b/2022/day_07/rust/src/main.rs similarity index 100% rename from 2022/day_7/rust/src/main.rs rename to 2022/day_07/rust/src/main.rs diff --git a/2022/day_7/rust/src/parser.rs b/2022/day_07/rust/src/parser.rs similarity index 100% rename from 2022/day_7/rust/src/parser.rs rename to 2022/day_07/rust/src/parser.rs diff --git a/2022/day_8/input.txt b/2022/day_08/input.txt similarity index 100% rename from 2022/day_8/input.txt rename to 2022/day_08/input.txt diff --git a/2022/day_8/rust/Cargo.toml b/2022/day_08/rust/Cargo.toml similarity index 100% rename from 2022/day_8/rust/Cargo.toml rename to 2022/day_08/rust/Cargo.toml diff --git a/2022/day_8/rust/src/grid.rs b/2022/day_08/rust/src/grid.rs similarity index 100% rename from 2022/day_8/rust/src/grid.rs rename to 2022/day_08/rust/src/grid.rs diff --git a/2022/day_8/rust/src/grid_peak_ranges.rs b/2022/day_08/rust/src/grid_peak_ranges.rs similarity index 100% rename from 2022/day_8/rust/src/grid_peak_ranges.rs rename to 2022/day_08/rust/src/grid_peak_ranges.rs diff --git a/2022/day_8/rust/src/main.rs b/2022/day_08/rust/src/main.rs similarity index 100% rename from 2022/day_8/rust/src/main.rs rename to 2022/day_08/rust/src/main.rs diff --git a/2022/day_8/rust/src/scenic_score.rs b/2022/day_08/rust/src/scenic_score.rs similarity index 100% rename from 2022/day_8/rust/src/scenic_score.rs rename to 2022/day_08/rust/src/scenic_score.rs diff --git a/2022/day_9/input.txt b/2022/day_09/input.txt similarity index 100% rename from 2022/day_9/input.txt rename to 2022/day_09/input.txt diff --git a/2022/day_9/rust/Cargo.toml b/2022/day_09/rust/Cargo.toml similarity index 100% rename from 2022/day_9/rust/Cargo.toml rename to 2022/day_09/rust/Cargo.toml diff --git a/2022/day_9/rust/src/main.rs b/2022/day_09/rust/src/main.rs similarity index 100% rename from 2022/day_9/rust/src/main.rs rename to 2022/day_09/rust/src/main.rs diff --git a/2022/day_9/rust/src/rope.rs b/2022/day_09/rust/src/rope.rs similarity index 100% rename from 2022/day_9/rust/src/rope.rs rename to 2022/day_09/rust/src/rope.rs diff --git a/Cargo.toml b/Cargo.toml index 4f3981c..45a368f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,15 @@ [workspace] resolver = "2" members = [ - "2022/day_1/rust", - "2022/day_2/rust", - "2022/day_3/rust", - "2022/day_4/rust", - "2022/day_5/rust", - "2022/day_6/rust", - "2022/day_7/rust", - "2022/day_8/rust", - "2022/day_9/rust", + "2022/day_01/rust", + "2022/day_02/rust", + "2022/day_03/rust", + "2022/day_04/rust", + "2022/day_05/rust", + "2022/day_06/rust", + "2022/day_07/rust", + "2022/day_08/rust", + "2022/day_09/rust", "2022/day_10/rust" ] exclude = [ "2022" ] \ No newline at end of file