what is the most concise kotlin version of `[ x fo...
# getting-started
h
what is the most concise kotlin version of
[ x for x in 5..n**0.5 step 6 ]
? so far i got:
Copy code
Array((n.sqrt - 5) / 6) {
            it * 6 + 5
        }
but that to me isn't as easily understood