We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cf5bcc commit bb38783Copy full SHA for bb38783
Behavioral/template.py
@@ -1,3 +1,9 @@
1
+# ------------------------------
2
+# Template Design Pattern.
3
4
+# Define the skeleton of an algorithm in an operation, deferring some steps to subclasses. Template method lets subclasses
5
+# redefine certain steps of an algorithm without changing the algorithm's structure
6
+
7
from abc import ABC, abstractmethod
8
9
class Template(ABC):
0 commit comments