Suppose node 180 does PutInt(280, 1); Send(280); PutInt(280, 2); Send(280);
and then, 6 minutes later, node 280 does Receive(180); int x = GetInt(180); 
Receive(180); int y = GetInt(180);.

Which of these describes the values of x and y?

1) x=1 and y=2 (180 sent [1] and [2], 280 received both)
2) x=1 and y=1 (180 sent [1] and [1,2], 280 received both)
3) x=2 and y hangs (180 sent [1], but overwrote it with [2], 280 received the 
latter)
4) x=1 and y hangs (180 sent [1], but overwrote it with [1, 2], 280 received 
the latter)

Sent from my eMail

-- 
You received this message because you are subscribed to the Google Groups 
"Google Code Jam" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-code/4C06A75D-70D9-4814-8C42-D30E932AC2EB%40pebody.org.
For more options, visit https://groups.google.com/d/optout.

Reply via email to