Posts by Renan Iago • 21 points
1 post
-
2
votes3
answers11403
viewsA: Find larger and smaller unique values
can be done so tbm: import def valoresUnicos(lista): listaSemRepetidos = [] for i in range(len(lista)): if lista.count(lista[i]) == 1: listaSemRepetidos.append(lista[i]) if listaSemRepetidos == []:…
pythonanswered Renan Iago 21