CodeCookbook
All topics

Recursion

1 of 11 · 0/ correct
fill blankmedium

The recurrence T(n) = 2T(n/2) + n solves to O(n ____ n) by the master theorem.