Pergunta de entrevista da empresa CoolMinds Technologies

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

Resposta da entrevista

Sigiloso

13 de jan. de 2025

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