>`(0 until N).reversed()` Did you mean `n downT...
# announcements
s
(0 until N).reversed()
Did you mean
n downTo 0
c
@Shawn not exactly the same, I want
[n-1, 0]
or
(N, 0]
,
n downTo 0
, seems to be
[n,0]
? (edited)
b
There was proposal for
downUntil
...