Challenge Name
Coding Interview Data Structure Questions: Create a Set Class
Issue Description
For this challenge, the user is asked to write an add function for a set. The description gives a template function which takes in no parameters:

However, this isn't correct because the function needs to have one parameter, the element to add. This is also evident from the seed code in the next challenge:

Challenge Name
Coding Interview Data Structure Questions: Create a Set Class
Issue Description
For this challenge, the user is asked to write an add function for a set. The description gives a template function which takes in no parameters:
However, this isn't correct because the function needs to have one parameter, the element to add. This is also evident from the seed code in the next challenge: