Fix bugs.

This commit is contained in:
hal8174 2024-02-27 22:02:40 +01:00
parent 0b84841768
commit 55ef06f868
3 changed files with 41 additions and 4 deletions

View file

@ -16,6 +16,7 @@ enum Problem {
Mid,
Snake,
Weaving,
Debug,
}
impl Problem {
@ -25,6 +26,7 @@ impl Problem {
Problem::Mid => problems::mid(),
Problem::Snake => problems::snake(),
Problem::Weaving => problems::weaving(),
Problem::Debug => problems::debug(),
}
}
}