Skip to content

Commit ce6368c

Browse files
authored
Update Solution.java
1 parent 6a8400f commit ce6368c

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/g3001_3100/s3080_mark_elements_on_array_by_performing_queries

1 file changed

+1
-1
lines changed

src/main/java/g3001_3100/s3080_mark_elements_on_array_by_performing_queries/Solution.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// #Medium #Array #Hash_Table #Sorting #Heap_Priority_Queue #Simulation
44
// #2024_04_16_Time_50_ms_(99.96%)_Space_77.2_MB_(15.35%)
55

6-
@SuppressWarnings("java:S6541")
6+
@SuppressWarnings({"java:S1871", "java:S6541"})
77
public class Solution {
88
public long[] unmarkedSumArray(int[] nums, int[][] queries) {
99
int l = nums.length;

0 commit comments

Comments
 (0)