AmazonRemove duplicates from a given stringOn this pageRemove duplicates from a given stringProblem StatementRemove duplicates from a given stringCodePython Codedef removeDuplicates(string): # arr = list(string) # arr = set(arr) # print(''.join(arr)) print(''.join(set(list(string))))removeDuplicates('eeeefggkkorss')