Remove Duplicates
Practice
3.8 (40 votes)
Algorithms
Approved
Easy
Open
Problem
90% Success 13806 Attempts 20 Points 2s Time Limit 256MB Memory 1024 KB Max Code
Given a string S. Your task is to remove all duplicates characters from the string S
NOTE:
1.) Order of characters in output string should be same as given in input string.
2.) String S contains only lowercase characters ['a'-'z'].
input:
Input contain a single string S.
Output:
Print the string S with no any duplicate characters.
Constraints:
Test Files 1 to 5:
1<=|S|<=100
Test Files 6 to 10:
1<=|S|<=100000
Sample Output #1
hacker
Sample Output #1
hacker
Sample Input #2
hackerearth
Sample Output #2
hackert
Sample Input #3
programming
Sample Output #3
progamin
Submissions
Please login to view your submissions
Similar Problems
Points:20
21 votes
Tags:
Ad-HocApprovedEasyMathOpen
Points:20
11 votes
Tags:
AlgorithmsApprovedData StructuresEasyHash MapsHash TablesMapsOpenString Manipulationapproved
Points:20
45 votes
Tags:
Ad-HocApprovedEasyImplementationOpen
Editorial