Remove Duplicates

Easy

📝 Description

Remove duplicate values from a list

Input Format

A list of values

Output Format

List with duplicates removed

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