Add candidate selection.

This commit is contained in:
hal8174 2024-01-21 15:29:20 +01:00
parent 207a0436d8
commit 8f6809c17f
3 changed files with 148 additions and 50 deletions

View file

@ -14,6 +14,7 @@ enum Mode {
enum ProblemCase {
Level1,
Level2,
Level3,
}
impl ProblemCase {
@ -21,6 +22,7 @@ impl ProblemCase {
match self {
ProblemCase::Level1 => problems::belt_madness_level_1(),
ProblemCase::Level2 => problems::belt_madness_level_2(),
ProblemCase::Level3 => problems::belt_madness_level_3(),
}
}
}