Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 26, 2022 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/c634d52a3234b11f81f6aa3dc9fff3e6 to your computer and use it in GitHub Desktop.
Save parzibyte/c634d52a3234b11f81f6aa3dc9fff3e6 to your computer and use it in GitHub Desktop.
def agregar_al_inicio(nodo_inicial, dato):
nuevo_nodo = Nodo(dato)
nuevo_nodo.siguiente = nodo_inicial
return nuevo_nodo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment