You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""locationNode is a class used to represent a node in a linked list. the graph of all locations in OOT uses an adjacency list, which is a list of pairs of the form [nodeID, locationNode]. Each locationNode is then used to construct a linked list of destinations from the source node
"""
class locationNode:
"""Note: Destination is an int representing the ID of the destination, weight is an int representing the weight of the edge, and myNext is either None (if we are at the end of the list) or another locationNode in the list"""