-
Divide and conquer
Divide and conquer is a very useful strategy that you can use in a range of problems. The first time I heard of it was in reference to the algorithm to break down problems recursively. The idea is to break down a big problem into smaller problems that are easier to solve, and then solve…