Skip to content

Instantly share code, notes, and snippets.

@darighost
Created October 12, 2023 19:00
Show Gist options
  • Save darighost/169c25d5e492047a4b43f34451554f03 to your computer and use it in GitHub Desktop.
Save darighost/169c25d5e492047a4b43f34451554f03 to your computer and use it in GitHub Desktop.
Daughter was mad and made a bunch of nonsense during her Python homework lol
def linked_lists(node):
next_node = None
ll = []
# loop somehow
next_node = linked_lists(node)
ll.append(next_node)
next_node = None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment