Question: What is the time complexity of following code: [2 Mark s ] int count = 0; for ( int i =0; i
What is the time complexity of following code: [2 Marks]
int count = 0;
for (int i=0; i
for (int j=i; j< i*i; j++)
if (j%i == 0)
{
for (int k=0; k
count=count+1;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
