Remove Duplicates

Easy

📝 Description

Remove duplicate values from list

Input Format

List of values

Output Format

List with duplicates removed

Constraints

List size ≤ 1000

🔍 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