Closed sofiiako closed 3 years ago
The task stated "...infinite sequence of odd numbers starting with 3", while the solution uses return generateSequence(1) { it + 2 }, which was reported as confusing by a user. Dropped the phrase "starting with 3"
return generateSequence(1) { it + 2 }
Closes https://youtrack.jetbrains.com/issue/EDC-506
Thank you! Fixed it the other way round (fixed the solution)
The task stated "...infinite sequence of odd numbers starting with 3", while the solution uses
return generateSequence(1) { it + 2 }
, which was reported as confusing by a user. Dropped the phrase "starting with 3"Closes https://youtrack.jetbrains.com/issue/EDC-506