Divide and Conquer

Here is a quick introduction to the divide and conquer paradigm!

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).

Atomic problem

Let’s solve a problem in which we have a list of uppercase and lowercase ...