Posts by Eder • 1 point
2 posts
-
0
votes0
answers15
viewsQ: Remove repeated python numbers
I’m not getting my program to print this output That’s the way out should be list = [2, 4, 2, 2, 3, 3, 1] remove_repeated(list) [1, 2, 3, 4] My programming for the problem is wrong, someone can help…
-
-1
votes6
answers42162
viewsA: Removing duplicate elements in a python list
numeros = input("Digite uma lista com números inteiros: ") print("Você digitou os seguintes números: ") print(numeros) #Cria a função remove_repetidos que cria e ordena um set a #partir de uma lista…