Skip to content

Instantly share code, notes, and snippets.

@roine
Created March 4, 2024 11:58
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 roine/a4077d8aadf53243a1304c41509dc117 to your computer and use it in GitHub Desktop.
Save roine/a4077d8aadf53243a1304c41509dc117 to your computer and use it in GitHub Desktop.
light tree
{
"val": 1,
"left": {
"val": 2,
"left": {
"val": 4,
"left": null,
"right": null
},
"right": {
"val": 5,
"left": null,
"right": null
}
},
"right": {
"val": 3,
"left": {
"val": 6,
"left": null,
"right": null
},
"right": {
"val": 7,
"left": null,
"right": null
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment