-
The instructions for `append` say "given two lists, add all items in the second list to the end of the first list". To me, a strict reading of this is that the first list should be modified (and then …
-
Reading the descriptions for Linked Lists in general, and even in the cited documentation for the exercise give us the idea of a list that would work as [1,2,3] where 1 would be the head node and 3 wo…
-
This issue describes how to implement the `imports` concept exercise for the Python track, which should explain how & why it is useful to `import` names (libraries, modules, classes, functions, etc.) …
-
It feels like quite some maintainers/contributors are interested in creating a syllabus for their track but don't really know where/how to start. Would be good to have some info about hat.
I will p…
-
Hello,
I have encountered a bug on the Python exercise of `Triangle`, however it seems to affect other language tracks as well, per my observation at `exercises/triangle/canonical-data.json`. The b…
-
This issue describes how to implement the `Test Driven Development (TDD)` Python Track docs.
## Getting started
**Please please please read the docs before starting.** Posting PRs without readin…
-
For Ellen's Alien Game, Pylint is complaining about:
```
Line 1 [E0015 unrecognized-option] : ["Unrecognized option found: no-space-check"] was reported by Pylint.
Line 1 [W0012 unknown-option-va…
-
Though it's implied in the tests, it might be nice to include that if a dart lands on the border between one ring and the other (say it lands at 0, 5) that it should go to the higher values. If this i…
-
Copied over from `exercism/exercim` [Issue #6333](https://github.com/exercism/exercism/issues/6333)
I think we can address some of these via re-working the track prerequisites and practices, so ope…
-
I'm mentoring a student who submitted this code for the lasagna exercise:
```
pub fn remaining_minutes_in_oven(actual_minutes_in_oven: i32) -> i32 {
let oven_time = 40;
let minutes_left_…