Skip to content

Commit 2c78e1d

Browse files
authored
Update maximum-product-of-subsequences-with-an-alternating-sum-equal-to-k.cpp
1 parent 1bf9406 commit 2c78e1d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

C++/maximum-product-of-subsequences-with-an-alternating-sum-equal-to-k.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ class Solution {
3030
}
3131
dp = move(new_dp);
3232
}
33-
3433
int result = -1;
3534
for (const auto& [p, total_products] : dp) {
3635
for (const auto& [total, products] : total_products) {

0 commit comments

Comments
 (0)