Divide and Conquer

This lesson goes over the divide and conquer approach to solving problems.

Divide and conquer method

Divide and conquer is an algorithmic paradigm in which the problem is repeatedly divided into subproblems until we reach a point where each problem is similar and atomic, i.e., can’t be further divided.

At this point, we can start solving these atomic problems and combining ...