function print (n)
if n>1:
print (n/2)
print (n/2)
for i=1 to n
print_line ("print me")
How many times the above function prints “print me”,
a) (Ign)
b) on
c) O(nlgn
d) oln’ign)
Answer
Answers
Answered by
5
Answer:
What we have to do here ?
Similar questions