Derk-Jan Karrenbeld
Derk-Jan Karrenbeld
@exercism/reviewers please :)
The problem with the mapping table it that it completely hides the fact that there is _more_ information than "colour -> number": the position of said colour. I proposed an...
@reddtoric which track?
You probably want to open an issue in https://github.com/exercism/csharp to sync their description with the canonical you found.
Whilst I like it, this would make the exercise harder in many languages. Even though we can now pick and choose our test cases, perhaps this would be better suited...
https://neurophysics.ucsd.edu/courses/physics_120/resistorcharts.pdf switches at exactly 1000 ohms. I find that compelling enough to fix the description to `3.3 k`
> I believe that as a learning platform (even if not for music) that it is important for our exercises to involve accurate information. Yes :heart:
Modelling a domain is definitely an interesting skills that might be solidified with a more accurate and complete exercise. However, if it'll just be "more of the same", then I...
`.map` doesn't "mutate" but I've seen people do this: ```javascript const items = [1, 2, 3] items.map((item, index) => { items[index] = item * 2 }) return items ``` This...
I was just indicating that you can use `map` to mutate ;)