Implement challenge 19 in Rust so that I can move on with good conscience.

This commit is contained in:
2022-07-24 18:19:32 -04:00
parent b8fa60cb05
commit 3248609119
3 changed files with 123 additions and 24 deletions

View File

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