Divide and Conquer

Get an introduction to the divide and conquer paradigm.

The divide and conquer method

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

Atomic problem

Let’s solve a problem in which we have a list of uppercase and lowercase alphabets and need to convert them all into lowercase.

In this problem, we will start ...