Skip to content

Instantly share code, notes, and snippets.

@vanbrabantf
Created April 2, 2021 14:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanbrabantf/8b093f8c86374ec8067c6700818ead43 to your computer and use it in GitHub Desktop.
Save vanbrabantf/8b093f8c86374ec8067c6700818ead43 to your computer and use it in GitHub Desktop.
<?php
public function invert(Node $tree): Node
{
$right = $tree->getLeft();
$left = $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