Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RakhmedovRS/b84d3c5758832540450b394dd69d85d2 to your computer and use it in GitHub Desktop.
Save RakhmedovRS/b84d3c5758832540450b394dd69d85d2 to your computer and use it in GitHub Desktop.
class Link
{
Link prev;
Link next;
int value;
public Link(int value)
{
this.value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment