Skip to content

Instantly share code, notes, and snippets.

@vanbrabantf
Created April 2, 2021 14:25
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 vanbrabantf/091a4318d8012b66020e79a94feeb6f6 to your computer and use it in GitHub Desktop.
Save vanbrabantf/091a4318d8012b66020e79a94feeb6f6 to your computer and use it in GitHub Desktop.
<?php
$right = $this->invert($tree->getLeft());
$left = $this->invert($tree->getRight());
return new Node($tree->getValue(), $left, $right);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment