Skip to content

Commit 8a6ce52

Browse files
committed
Runtime: 0 ms (Top 100.00%) | Memory: 9.6 MB (Top 79.69%)
1 parent dcf97ef commit 8a6ce52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/I/Invert Binary Tree/Invert Binary Tree.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 0 ms (Top 100.00%) | Memory: 9.6 MB (Top 79.69%)
12
class Solution {
23
public:
34
TreeNode* invertTree(TreeNode* root) {
@@ -9,4 +10,4 @@ class Solution {
910
invertTree(root->right);
1011
return root;
1112
}
12-
};
13+
};

0 commit comments

Comments
 (0)