Abdul Bari Algorithms - Recurrence Relation and Master's...
if there's a coeffecient on the function ,it's different though. $T(n) = 2*T(n-1) +1$ ## Subtraction Recurrence Relation 4 ```js function test(n){ if (n>0){ console.log(n); test(n-1); test(n-1); } } ``` $T(n)=2T(...