Skip to content

Instantly share code, notes, and snippets.

@klaeufer
Created October 20, 2011 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klaeufer/1302405 to your computer and use it in GitHub Desktop.
Save klaeufer/1302405 to your computer and use it in GitHub Desktop.
Loyola University Chicago Comp 373/473 Project 2a Sample Test Case 4
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