Add candidate selection.
This commit is contained in:
parent
207a0436d8
commit
8f6809c17f
3 changed files with 148 additions and 50 deletions
|
|
@ -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(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue