Created
October 20, 2011 21:13
-
-
Save klaeufer/1302405 to your computer and use it in GitHub Desktop.
Loyola University Chicago Comp 373/473 Project 2a Sample Test Case 4
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
struct ListNode { value, next }; | |
n = new ListNode; | |
n.value = 5; | |
n.next = 0; | |
{ n.value = 7, n }.next = 12; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment