0 answers
1
What is the time complexity of the following function ? int foo(int num) { int result=0; if(num<=1) return 1; else { for(i=num;i>=1;i ) { result+=foo(i/3); } } return res...
1 answer
2
What effect does Loop Unrolling have on the ans? What is the ans if we don't use it?