Start to implement challenge 19 in Rust which requires some learning.

This commit is contained in:
2022-07-20 20:27:51 -04:00
parent 467c3bdbef
commit b8fa60cb05
2 changed files with 32 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ mod set2;
mod set3;
fn main() {
const RUN_ALL: bool = true;
const RUN_ALL: bool = false;
if RUN_ALL {
set1::challenge1();
set1::challenge2();
@@ -32,6 +32,6 @@ fn main() {
set3::challenge19();
set3::challenge20();
} else {
set3::challenge20();
set3::challenge19();
}
}