Skip to content

Instantly share code, notes, and snippets.

@arbaz52
Created April 24, 2018 16:41
Show Gist options
  • Save arbaz52/53320a110dc4f4cbe6ac4e6a1945e4b9 to your computer and use it in GitHub Desktop.
Save arbaz52/53320a110dc4f4cbe6ac4e6a1945e4b9 to your computer and use it in GitHub Desktop.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package letmecodeinjava;
/**
*
* @author doom
*/
public class Node {
public Node next;
public int value;
public Node(int v){
value = v;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment