I'm trying to do this exercise from Codewars:
The goal of this exercise is to convert a string to a new string where each character in the new string is "(" if that character appears only once in the original string, or ")" if that character appears more than once in the original string. Ignore capitalization when determining if a character is a duplicate. Here is my code:
def duplicate_encode(word):
new_word = ''
for i in word:
if word.count(i) == 1:
new_word += '('
else:
new_word += ')'
return new_word
When converting the word Success
, I've got (())())
instead of )())())
.
Could anyone please tell me how to solve it?