Find the time complexity of the following Code : int gcd(int a,int b) { if(b==0) return a; else Return gcd(b,a%b); }
number-theory-quiz-i
Ankit_kumar_3003
(Ankit Kumar)
August 27, 2020, 12:03pm
#1
I want to know about how it is log (max(a,b))