Find Unique Elements

Easy

📝 Description

Find unique elements in a list

Input Format

A list of integers

Output Format

List of unique elements

Constraints

List length ≤ 100

🔍 Sample Input

1 2 2 3 4 4 5
            

✅ Sample Output

1 2 3 4 5
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run