Exercise: Adapter Patterns

Test your understanding of the adapter design pattern by implementing it through delegation.

We'll cover the following...

Problem statement

You’re given a LegacyRectangle class, which has an oldDraw() method. For ...