Implement challenge 27

This commit is contained in:
2022-08-16 19:16:48 -04:00
parent caf6d35b59
commit 54047b3450
2 changed files with 63 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ mod set4;
mod utils;
fn main() {
const RUN_ALL: bool = true;
const RUN_ALL: bool = false;
if RUN_ALL {
set1::challenge1();
set1::challenge2();
@@ -42,7 +42,8 @@ fn main() {
set4::challenge25();
set4::challenge26();
set4::challenge27();
set4::challenge28();
} else {
set4::challenge27();
set4::challenge28();
}
}