623. Add One Row to Tree
![[LeetCode] 623. Add One Row to Tree](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FI01b5%2FbtrNUGeJZOt%2FqThfEE8oRtk2phKnjgin21%2Fimg.jpg)
[LeetCode] 623. Add One Row to Tree
623. Add One Row to Tree Medium Given the root of a binary tree and two integers val and depth, add a row of nodes with value val at the given depth depth. Note that the root node is at depth 1. The adding rule is: Given the integer depth, for each not null tree node cur at the depth depth - 1, create two tree nodes with value val as cur's left subtree root and right subtree root. cur's original..