public static double SuccessRate(int speed) =>
speed switch
{
0 => 0.0,
< 5 => 1.0,
< 9 => 0.9,
9 => 0.8,
10 => 0.77,
_ => throw new Exception($"Expected speed between 0 and 10, got `{speed}`")
};
public static double SuccessRate(int speed) =>
speed switch
{
0 => 0.0,
< 5 => 1.0,
< 9 => 0.9,
9 => 0.8,
10 => 0.77,
_ => throw new Exception($"Expected speed between 0 and 10, got `{speed}`")
};