exercism

George Silva 2021-09-15T18:32:53.056700Z

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

Bobbi Towers 2021-09-15T18:47:12.056900Z

https://github.com/exercism/exercism/issues

George Silva 2021-09-15T20:14:24.057100Z

🙇

George Silva 2021-09-15T20:18:38.057300Z

Super minor think @porkostomus, but reported. https://github.com/exercism/exercism/issues/5914

Bobbi Towers 2021-09-15T20:24:18.057600Z

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 Towers 2021-09-15T20:26:16.057800Z

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.

roelof 2021-09-15T20:29:01.059800Z

@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 Towers 2021-09-15T20:45:08.059900Z

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

roelof 2021-09-15T21:14:22.060100Z

and thet do not

roelof 2021-09-15T21:14:54.060300Z

in the first the test of assymble-line is green

roelof 2021-09-15T21:15:06.060500Z

and on the second one the test is red

roelof 2021-09-15T21:16:22.060800Z

with for example this as test error :

roelof 2021-09-15T21:16:28.061Z

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

Bobbi Towers 2021-09-15T21:18:44.061200Z

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

roelof 2021-09-16T04:56:00.061400Z

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

George Silva 2021-09-16T13:10:33.061800Z

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

roelof 2021-09-17T05:06:16.062100Z

thanks , so it seems to be a conversion problem