Finish challenge 23.

This commit is contained in:
2022-08-06 11:24:58 -04:00
parent b7ca276f72
commit 98ad4c7712
2 changed files with 62 additions and 41 deletions

View File

@@ -10,7 +10,7 @@ mod set2;
mod set3;
fn main() {
const RUN_ALL: bool = false;
const RUN_ALL: bool = true;
if RUN_ALL {
set1::challenge1();
set1::challenge2();
@@ -35,7 +35,8 @@ fn main() {
set3::challenge21();
set3::challenge22();
set3::challenge23();
set3::challenge24();
} else {
set3::challenge23();
set3::challenge24();
}
}