This comment is hidden because it contains spoiler information about the solution
Probably tests are poorly written as you said. You can simply use a float for the dividend to get a decimal number instead of a ratio.
(/ 5.0 2) => 2.5
I propose the solution
(float 5/2) => 2.5
Looks like the tests don't cover that.
Loading collection data...
This comment is hidden because it contains spoiler information about the solution
Probably tests are poorly written as you said. You can simply use a float for the dividend to get a decimal number instead of a ratio.
I propose the solution
Looks like the tests don't cover that.