Fork me on GitHub
#exercism
<
2021-09-15
>
George Silva18:09:53

Hey friends, what is the best place to report issues on exercism itself (not the clojure track)?

Bobbi Towers20:09:18

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?

Bobbi Towers20:09:16

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.

roelof20:09:01

@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 numbers

Bobbi Towers20:09:08

You're right, they should both return the same thing

roelof21:09:22

and thet do not

roelof21:09:54

in the first the test of assymble-line is green

roelof21:09:06

and on the second one the test is red

roelof21:09:22

with for example this as test error :

roelof21:09:28

Expected (= 0.0 (cars-assemble/production-rate 0)) but got (not (= 0.0 0))

Bobbi Towers21:09:44

hmm so I guess it's because the first case returns it as a float

roelof04:09:00

no idea if that is the case and how to check that

George Silva13:09:33

@U0EGWJE3E I had a large conversation with friendly folks around here about that something similar. Check this: https://clojurians.slack.com/archives/C053AK3F9/p1631043305188900 \

roelof05:09:16

thanks , so it seems to be a conversion problem