Grokking Algorithm Complexity and Big-O

0% completed

Quiz
Quiz

What is the time complexity of the following recursive function?

public void printNumbers(int n) {
    if (n == 0) return;
    System.out.println(n);
    printNumbers(n - 1);
}
Click an option to answer

.....

.....

.....

Like the course? Get enrolled and start learning!