Skip to content

Commit cd9dc93

Browse files
committed
updates
1 parent f1b8f3a commit cd9dc93

File tree

5 files changed

+20
-1
lines changed

5 files changed

+20
-1
lines changed

iterator/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ An interface with **next** and **has_next** methods.
88

99
The benefits of using the Iterator pattern is that the client, can traverse an aggregate without needing to understand it's internal representation and data structures.
1010

11-
![Iterator Pattern UML Diagram](iterator.png)
11+
![Iterator Pattern UML Diagram](iterator.png)
12+
13+
## Video Tutorial
14+
15+
[![Iterator Design Pattern In Python](https://img.youtube.com/vi/5rRP1H4DZK4/0.jpg)](https://youtu.be/5rRP1H4DZK4)

mediator/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ With the mediator pattern, communication between objects is encapsulated within
77
Objects communicate through the mediator rather than directly with each other.
88

99
![Mediator Pattern UML Diagram](mediator.png)
10+
11+
## Video Tutorial
12+
13+
[![Mediator Design Pattern In Python](https://img.youtube.com/vi/WO2d88H4_10/0.jpg)](https://youtu.be/WO2d88H4_10)

observer/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ The observer pattern is a software design pattern in which an object, called the
44

55
![Observer Pattern](observer.png)
66

7+
## Video Tutorial
8+
9+
[![Observer Design Pattern In Python](https://img.youtube.com/vi/KAwOtYk7QSE/0.jpg)](https://youtu.be/KAwOtYk7QSE)

prototype/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ the copy method you use works as you expect.
1515

1616
![Prototype UML Diagram](prototype.png)
1717

18+
## Video Tutorial
19+
20+
[![Prototype Design Pattern In Python](https://img.youtube.com/vi/_jBjhI6-VDI/0.jpg)](https://youtu.be/_jBjhI6-VDI)

proxy/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ Object Augmentation
1616

1717
![Proxy Pattern UML Diagram](proxy.png)
1818

19+
## Video Tutorial
20+
21+
[![Proxy Design Pattern In Python](https://img.youtube.com/vi/YD38-BFvBIg/0.jpg)](https://youtu.be/YD38-BFvBIg)
22+
23+
1924

0 commit comments

Comments
 (0)