0
Answer Py dev courser
PROBLEM Sets You are working on a recruitment platform, which should match the available jobs and the candidates based on their skills. The skills required for the job, and the candidate's skills are stored in sets. Complete the program to output the matched skill. You can use the intersect operator to get the values present in both sets. CODE skills = {'Python', 'HTML', 'SQL', 'C++', 'Java', 'Scala'} job_skills = {'HTML', 'CSS', 'JS', 'C#', 'NodeJS'} help me to continue
1 Réponse
+ 3
Shahriyor Toychiboyev ,
to give you support and see where the issue is, we need to see your current code first.
> save the code in playground, create a link to it, and post this link here.
> hint: there are *set methods* that can return commen elements from both input data sets.