Skip to content

Instantly share code, notes, and snippets.

@colltoaction
Created June 6, 2014 04:55
Show Gist options
  • Save colltoaction/1f238180cf1bd5c678d2 to your computer and use it in GitHub Desktop.
Save colltoaction/1f238180cf1bd5c678d2 to your computer and use it in GitHub Desktop.
def replicar(lista, repeticiones):
if len(lista) <= 1:
return lista * repeticiones
mitad = len(lista) / 2
return replicar(lista[:mitad], repeticiones) + replicar(lista[mitad:], repeticiones)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment