design-patterns/behavioral/strategy/__init__.py
Ruidy 03cb570b65
Strategy (#22)
* add documentation

* add code example
2020-10-09 12:01:22 +02:00

4 lines
128 B
Python

"""
Lets you define a family of algorithms, put each of them into a separate class,
and make their objects interchangeable.
"""