Skip to content

Latest commit

 

History

History
73 lines (40 loc) · 1.68 KB

File metadata and controls

73 lines (40 loc) · 1.68 KB

AlgorithmicProblemSolvingStrategies



Algorithm solving strategies

  1. Read and understand the problem

  2. Redefine the problem in familiar terms. (Redefine and abstract)

  3. Make a plan for how to solve it

  4. Validate the plan

  5. Implement it in a program

  6. Reflect on how you solved the problem and look for ways to improve.

  • Plans
  • BruteForce
  • Divide & Conquer
  • DynamicProgramming