shared_skills(a, b) that takes two lists of skill strings and returns a sorted list of the skills present in both, compared case-insensitively and returned in lowercase.shared_skills(['Python', 'SQL', 'Excel'], ['sql', 'python', 'Tableau'])
['python', 'sql']
Python and SQL appear in both lists once lowercased.
Convert both lists to lowercase sets.
Use & for intersection, then sorted().