470. Tweaked Identical Binary Tree Check two given binary trees are identical or not. Assuming any number of tweaksare allowed. A tweak is defined as a swap of the children of one node in the tree. Example Example 1: Input:{1,2,3,4},{1,3,2,#,#,#,4} O…