Exercise: Decorator Design Pattern
Test your understanding of decorator design patterns by adding an extra wrapper.
We'll cover the following...
Problem statement
Write a BorderShape class that inherits from the Shape class, which will represent a shape with a border ...
Ask