Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 26, 2022 15:57
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/862f02ebeeea52ba74a56d4142618350 to your computer and use it in GitHub Desktop.
Save parzibyte/862f02ebeeea52ba74a56d4142618350 to your computer and use it in GitHub Desktop.
class Nodo():
dato = None
siguiente = None
def __init__(self, dato):
self.dato = dato
self.siguiente = None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment