Skip to content

Commit 92b9b52

Browse files
committed
Runtime: 265 ms (Top 34.71%) | Memory: 85.2 MB (Top 55.38%)
1 parent ac57b99 commit 92b9b52

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/algorithms/A/All Elements in Two Binary Search Trees/All Elements in Two Binary Search Trees.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 265 ms (Top 34.71%) | Memory: 85.2 MB (Top 55.38%)
12
class Solution {
23
public:
34
vector<int> v;
@@ -13,7 +14,7 @@ class Solution {
1314
Temp(root1);
1415
Temp(root2);
1516
sort(v.begin(), v.end());
16-
17+
1718
return v;
1819
}
19-
};
20+
};

0 commit comments

Comments
 (0)