Remove Duplicate Chars

Easy

📝 Description

Remove duplicate characters from string while preserving order

Input Format

A single string

Output Format

String with duplicates removed

Constraints

Length ≤ 1000

🔍 Sample Input

hello
            

✅ Sample Output

helo
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run