employer cover photo
employer logo
employer logo

CoolMinds Technologies

Est-ce votre entreprise ?

Question d’entretien chez CoolMinds Technologies

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

Réponse à la question d'entretien

Utilisateur anonyme

13 janv. 2025

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