Join Regular Classroom : Visit ClassroomTech

Non Duplicate String | Accenture Solve

Python

1
2
3
4
5
6
7
8
from collections import OrderedDict
 
def removeDupWithOrder(str):
    return "".join(OrderedDict.fromkeys(str))
 
if __name__ == "__main__":
    str = input()
    print (removeDupWithOrder(str))

Alternative Solution

Python

1
2
3
4
5
6
7
8
9
10
11
12
def removeDuplicate(str):
     
    t=""
    for i in str:
        if(i in t):
            pass
        else:
            t=t+i
    print(t)
     
str=input()
removeDuplicate(str)