Help with code implementation - HashSet
This exercise I don't quite understand how I should do it. I can insert a foreach that goes through the names with a Key and later implement an If Else statement, it can be with a ternary operator and finally implement an IsSubsetOf to return true if the hash set is a superset of the specified collection. The exercise mentions the following: We are hiring programmers on our team. There are 10 candidates, and we need to choose 3 of them. In the program you are given, you have 10 candidates in a hash set. You need to take 3 names as input, add them to a new hash set and check if they are present in our candidate set. If they are, the program should generate "Starting hiring process", otherwise "Something is wrong". Input example John Susan Daniel Output example Starting hiring process I need help with this exercise. This is the code: https://code.sololearn.com/cfYUaGlwlfGm/?ref=app