Created
October 12, 2023 19:00
-
-
Save narskidan/169c25d5e492047a4b43f34451554f03 to your computer and use it in GitHub Desktop.
Daughter was mad and made a bunch of nonsense during her Python homework lol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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