add new solutions

This commit is contained in:
kanna5 2025-12-31 15:14:22 +09:00
parent 71189b61cf
commit 9c2c959a9b
Signed by: kkyy
GPG key ID: 06332F3965E9B0CF
10 changed files with 349 additions and 8 deletions

View file

@ -15,3 +15,5 @@ func invertTree(root *TreeNode) *TreeNode {
invertTree(root.Right)
return root
}
var _ = invertTree