Skip to Main Content

Invert Binary Tree

Problem URL:Invert Binary Tree

My Solution

JavaScript / TypeScript

/**
 * Definition for a binary tree node.
 * class TreeNode {
 *     val: number
 *     left: TreeNode | null
 *     right: TreeNode | null
 *     constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
 *         this.val = (val===undefined ? 0 : val)
 *         this.left = (left===undefined ? null : left)
 *         this.right = (right===undefined ? null : right)
 *     }
 * }
 */

const invertTree = (root: TreeNode | null): TreeNode | null => {
  if (!root) {
    return null;
  }

  const leftChild = root.left;
  root.left = invertTree(root.right);
  root.right = invertTree(leftChild);

  return root;
};

Let's Connect

Twitter GitHub LinkedIn