Strategy Design Pattern

What is Strategy Pattern? Strategy is a behavioral design pattern. This pattern helps you define different algorithms that can be applied in given circumstances into it’s own class and make their objects interchangeable. Can you help me understand what type of problem we can solve with Strategy Pattern? Let’s consider Read more…