Intermediate Python “you are qualified” | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Intermediate Python “you are qualified”

Do the developers actual monitor this thing? How am I supposed to figure out what is wrong with the code if the only test case is hidden?! I am not sure why any of them are hidden from an instructional design standpoint, but to have zero outputs to review is silly.

25th Jan 2022, 9:42 PM
Kevin MacPherson
Kevin MacPherson - avatar
3 Antworten
+ 3
The test cases are hidden so we don't hard code solutions. All relevant conditions are in the task description, read it carefully. Make sure you only output the skill, not a list or set If you need help with code, please link your code.
25th Jan 2022, 10:02 PM
Lisa
Lisa - avatar
0
Kevin MacPherson here this might help a bit on the exercise skills.intersection( job_skills ) is similar to but not the same as: skills.includes( job_skills ) assign it to a variable let's say x = x = skills.intersection( job_skills ) This creates a common array without actually creating an array called x Then lets call what skills and job_skills have in common. for y in x : Then lets print from the imaginary array x each item ( y ) one at a time >>>print( y ) *hint: don't overcomplicate
25th Jan 2022, 10:26 PM
BroFar
BroFar - avatar