Почему такой код не принимает валидатор ведь он эквивалентен правильному решению?
package com.javarush.task.pro.task08.task0809;
/*
Counter
*/
public class Solution {
public static void main(String[] args) throws InterruptedException {
printNumbers();
}
public static void printNumbers() throws InterruptedException {
//напишите тут ваш код
for (int i = 1; i <= 10; i++) {
if (i < 10) {
Thread.sleep(1, 300_000);
System.out.println(i);
} else {
System.out.println(i);
}
}
}
}