I am trying to figure out what gets assigned to what first? In the following line of code
self.tail.next = self.tail = Queue.Node(val)
What is the order of assignment? What would be an equivalent in more than one line?
I am trying to figure out what gets assigned to what first? In the following line of code
self.tail.next = self.tail = Queue.Node(val)
What is the order of assignment? What would be an equivalent in more than one line?