Hacker News new | ask | show | jobs
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

1 comments

Soooo, I won't get the job?