Skip to content

Instantly share code, notes, and snippets.

@Jul10l1r4
Last active February 9, 2019 00:36
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Analise combinatória, e remoção de repetições com strings
#!/usr/bin/python3
values = ["John","have","easy","pass"]
# Parse value
def parsing (x):
final=[]
for i in x:
final = final + i
return final
# Normal
def mess (x):
lista = []
for i in values:
lista.append(x+i)
return lista
# Output
new = parsing(list(map(mess, values)))
print("---[Combinatories analysis]---")
print(set(new))
print("---[Lenght for each values]---")
print("Root values:"+ str(len(values)))
print("Results: "+str(len(new)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment