You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/kotlin/g3501_3600/s3509_maximum_product_of_subsequences_with_an_alternating_sum_equal_to_k/Solution.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ class Solution {
95
95
continue
96
96
}
97
97
val bs:BitSet= entry.value
98
-
if (targetIdx >=0&& targetIdx < size && bs.get(targetIdx)) {
98
+
if (targetIdx >=0&& targetIdx < size && bs[targetIdx]) {
0 commit comments