Skip to content

Instantly share code, notes, and snippets.

@shalithasuranga
Created August 9, 2023 11:50
Show Gist options
  • Save shalithasuranga/b2b02ccce9adb14ce2e907fceaa2817d to your computer and use it in GitHub Desktop.
Save shalithasuranga/b2b02ccce9adb14ce2e907fceaa2817d to your computer and use it in GitHub Desktop.
const tree = JSON.parse(`...`); // Add JSON here.
function dfs(node) {
if(!node)
return;
console.log(node.v);
dfs(node.a);
dfs(node.b);
}
dfs(tree);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment