Data Deduplicator

Medium
#lists #data-cleaning

Input: `arr` (list) of raw data. Return: List with duplicates removed, preserving order.

Example

Input: 1, 2, 2, 3
Output: [1, 2, 3]
Need a hint?
  • Use a set or build a new list checking membership
Run your code to see output