
120. What is the space complexity of this function? Assume the initial value of i and j is zero. function f(i, j, n) println(i, j); if (i< n) if (j <n) f(i, j 1, n); else return 0; Show transcribed image text
Expert Answer
An answer will be send to you shortly. . . . .