Exercise 1: Sets
Let's have some fun with the set implementation by doing this challenge.
We'll cover the following...
Problem statement
Implement a BoundedSet that inherits from Set to achieve the desired behavior.
The object of the BoundedSet class is instantiated like so:
const set ... Ask