Your question is Unique Elements from a List. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given a list nums of integers, return a new list containing only the unique elements from nums in the order of their first appearance. The input is a Python list, and the output must also be a Python list.
def unique_elements(nums):