Hey friends, what is the best place to report issues on exercism itself (not the clojure track)?
🙇
Super minor think @porkostomus, but reported. https://github.com/exercism/exercism/issues/5914
I noticed that too. But then I also noticed it on Github itself, there is this pathological problem where the numbers of issues, etc. don't update until you actually refresh the page. I wonder why this is so hard to get right?
Oh wait, I see you're referring to a different problem. I believe that may be a duplicate, I think they are aware of it.
@porkostomus one question about a challenge Can you explain to me why
(* (* 221 speed)(success-rate speed)))
makes the test green in Assembly line
and why
(* 221 speed (success-rate speed))
is failing
As far as I know that one also multiply the three numbersYou're right, they should both return the same thing
and thet do not
in the first the test of assymble-line is green
and on the second one the test is red
with for example this as test error :
Expected (= 0.0 (cars-assemble/production-rate 0)) but got (not (= 0.0 0))hmm so I guess it's because the first case returns it as a float
no idea if that is the case and how to check that
@roelof I had a large conversation with friendly folks around here about that something similar. Check this: https://clojurians.slack.com/archives/C053AK3F9/p1631043305188900 \
thanks , so it seems to be a conversion problem