Added implementation for 17.9 for kth multiples. Used Eratosthenes method which is less than desirable.

master
Tomasz Polgrabia 2025-01-06 12:22:23 +01:00
parent 7f3f5bc070
commit 1d997a3ece
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ fun main() {
print("K number: ")
val kNumber = readln().toInt()
var arr = Array(maxSize + 1, { false })
val arr = Array(maxSize + 1, { false })
for (i in 3 until maxSize + 1 - kNumber step 3) {
arr[i] = true
}