use division remainder as second criterion
All checks were successful
Build / build (push) Successful in 1m59s

This commit is contained in:
Max Känner 2025-01-22 01:00:29 +01:00
parent d46e2d8163
commit d3abaf61a7

View File

@ -107,7 +107,7 @@ async fn get_move(request: Json<Request>) -> response::Json<Response> {
let action = actions.into_iter().max_by_key(|action| { let action = actions.into_iter().max_by_key(|action| {
let action_data = action_data[usize::from(*action)]; let action_data = action_data[usize::from(*action)];
action_data.0 / action_data.1 (action_data.0 / action_data.1, action_data.0 % action_data.1)
}); });
if let Some(action) = action { if let Some(action) = action {