✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following code fragment:
public static void runner(int n) {
int count = 0;
for(int i = 1; i * i < n; i++) {
System.out.println(count, i);
count++;
}
}
What is the time complexity of this code?