Closed thunderbiscuit closed 3 years ago
As per the documentation on coding convention.
for (i in 0..n - 1) { /*...*/ } // bad for (i in 0 until n) { /*...*/ } // good
The code was actually written correctly. Closing this.
As per the documentation on coding convention.