Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 337 Bytes

strategy-pattern.md

File metadata and controls

7 lines (4 loc) · 337 Bytes

Strategy Design Pattern

Strategy pattern encapsulates algorithms belonging to the same family and making them interchangeable. The consumers of the common interface that the algorithms implement allow switching out one algorithm for another seamlessly.

Solution

Strategy Structure