Unique Elements
Easy📝 Description
Find all unique elements in a list
Input Format
List of elements
Output Format
List of unique elements
Constraints
1 ≤ list.length ≤ 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.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run