Skip to content

Instantly share code, notes, and snippets.

@AahanSingh
Last active June 27, 2021 06:53
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 AahanSingh/39053a1405b92422bbdf9a47f10936a3 to your computer and use it in GitHub Desktop.
Save AahanSingh/39053a1405b92422bbdf9a47f10936a3 to your computer and use it in GitHub Desktop.
Linked List - Data Structure
type Node struct {
Data int
Next *Node
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment