nkiesel
fun getDivisors(n: Int) = (1..Math.sqrt(n.toDouble()).toInt()).filter { n % it == 0 }.flatMap { setOf(it, n / it) }