From 798e300b20f6a813f6796e4a4a62ab74b517a532 Mon Sep 17 00:00:00 2001 From: Amin Memariani Date: Wed, 2 Jan 2019 19:09:14 +0330 Subject: [PATCH] Create README.md --- 07_strategy/README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 07_strategy/README.md diff --git a/07_strategy/README.md b/07_strategy/README.md new file mode 100644 index 0000000..9f170ea --- /dev/null +++ b/07_strategy/README.md @@ -0,0 +1,5 @@ +

strategy

+ +the `strategy pattern` (also known as the policy pattern) is a behavioral software design pattern that enables selecting +an algorithm at runtime. Instead of implementing a single algorithm directly, code receives run-time instructions as to +which in a family of algorithms to use.