Skip to content

Commit fc24861

Browse files
committed
Runtime: 87 ms (Top 26.83%) | Memory: 9.5 MB (Top 93.67%)
1 parent dae42cc commit fc24861

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/D/Duplicate Zeros/Duplicate Zeros.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 87 ms (Top 26.83%) | Memory: 9.5 MB (Top 93.67%)
12
class Solution {
23
public:
34
void duplicateZeros(vector<int>& arr) {
@@ -10,6 +11,6 @@ class Solution {
1011
i++;
1112
}
1213
}
13-
14+
1415
}
1516
};

0 commit comments

Comments
 (0)