Daily challenge for 2025-03-26
85. Remove Duplicates from a List
Write a function solve that removes duplicates from a list while preserving the original order.
Example:Input: [1, 2, 2, 3, 4, 4]Output: [1, 2, 3, 4]
Run this challenge interactively in Python or JavaScript when the app loads.