Skip to content

Commit 29179fb

Browse files
committed
Runtime: 46 ms (Top 11.65%) | Memory: 24.7 MB (Top 31.13%)
1 parent 208b48e commit 29179fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/M/Most Frequent Subtree Sum/Most Frequent Subtree Sum.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 46 ms (Top 11.65%) | Memory: 24.7 MB (Top 31.13%)
12
class Solution {
23
private:
34
unordered_map<int, int> m;
@@ -20,4 +21,4 @@ class Solution {
2021
}
2122
return ans;
2223
}
23-
};
24+
};

0 commit comments

Comments
 (0)