fix error

This commit is contained in:
Suguivy 2022-12-02 14:52:25 +01:00
parent 5f28c47370
commit 850e41af2d
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ fn get_true_round(a: &str, b: &str) -> i32 {
"C" => 3,
_ => panic!("WTF")
};
((b/3+2)+a)%3+b
((b/3+2)+a-1)%3+1+b
}
fn get_round(a: &str, b: &str) -> i32 {