Leetcode 226. Invert Binary Tree

1 · Brian Bernal · July 27, 2021, midnight
For this problem I am given the root of a binary tree and I must return a fully inverted tree. URL: https://leetcode.com/problems/invert-binary-tree/ My solution: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(int val) { this.val = val; } * TreeNode(int val, TreeNode left, TreeNode right) { * ...