Divide and Conquer
Divide problem to smaller subproblems. (More often than not, this just means dividing the problem in 2 however many times.)
Solve the smaller subproblem.
Define a method takes the solved subproblem to form a larger subproblem but is treated as a smaller subproblem.
Usually the most amount of ingenuity is spent on 3.
Last updated
Was this helpful?