fix README file extension

This commit is contained in:
Jakub Vojvoda
2019-01-31 19:58:32 +01:00
parent a0b0ea4f8e
commit 7c8a9e150f
2 changed files with 0 additions and 0 deletions

11
strategy/README.md Normal file
View File

@@ -0,0 +1,11 @@
## Strategy
Strategy defines a family of algorithms, encapsulates each one, and makes them
interchangeable. It lets the algorithm vary independently fromclients that use it.
The pattern has behavioral purpose and applies to the objects.
### When to use
* many related classes differ only in their behavior
* you need different variants of an algorithm
* an algorithm uses data that clients shouldn't know about