You cannot use the set function to convert the sequence to a set.
Здравствуйте.
Задание:
unique(sequence): returns a set with all the elements of sequence, but only one copy, so it should behave as the set function. You cannot use the set function for this implementation.
def unique(sequence):
r = []
for elem in sequence:
if(elem not in r):
r.append(elem)
return r
Вывод: {"banana", "apple", "orange"}
Как можно вернуть список с фигурными скобками? Или нужно делать строку, в которой данные будут заключены?