in Algorithms
222 views
0 votes
0 votes
Large(n)

{

If(n<=1)

Return n;

Sum=0;

For i=0 to n-1

Sum=Sum+Large(i);

Return Sum;

}

What will be its time complexity??
in Algorithms
222 views

Please log in or register to answer this question.