employer cover photo
employer logo
employer logo

CoolMinds Technologies

Is this your company?

CoolMinds Technologies Interview Question

Remove duplicate character from a string without using built-in functions.

Interview Answer

Anonymous

Jan 13, 2025

string = "malayalam" newstring = "" for i in string: if i not in newstring: newstring += i print(newstring)