Open soniadessai opened 1 year ago
Hello @Gdsc-Cummins !! I am Saniya from Cummins college in 2nd year computer department . I am interested in working on this issue. please assign it to me .thanks!
@Sonia312 I would like to work on this issue. Could you assign this issue it me? Lavanya Waghulde UEC2022362 SY E&TC lavanya.waghulde@cumminscollege.in Cummins college of Engineering
Write code in the preferred language and attach output with it.
Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center).
Example 1:
Input: root = [1,2,2,3,4,4,3] Output: true
Example 2:
Input: root = [1,2,2,null,3,null,3] Output: false