|
|
|
|
|
by robkix
4093 days ago
|
|
Why reversed range? Range is fully capable of descending [1] You also missed the point of the exercise: start at 0 in your index, but count backward from 100 in output. So the map is 0->100, 1 -> 99, ..., 99 -> 1, 100 -> 0 [1] https://docs.python.org/2/library/functions.html#range |
|