Skip to content

Instantly share code, notes, and snippets.

@tifoaudii
Created April 5, 2020 04:44
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 tifoaudii/500d9feae5df9dd5cce7a45c4fe130f8 to your computer and use it in GitHub Desktop.
Save tifoaudii/500d9feae5df9dd5cce7a45c4fe130f8 to your computer and use it in GitHub Desktop.
class Node<Value> {
var value: Value
var next: Node<Value>?
init(value: Value, next: Node<Value>? = nil ) {
self.value = value
self.next = next
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment