Skip to content

Commit 43ccedb

Browse files
committed
Fixed sonar
1 parent be59112 commit 43ccedb

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/g3501_3600/s3558_number_of_ways_to_assign_edge_weights_i

1 file changed

+1
-1
lines changed

src/main/java/g3501_3600/s3558_number_of_ways_to_assign_edge_weights_i/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public class Solution {
66
private static int mod = (int) 1e9 + 7;
7-
private static long[] pow2 = new long[100001];
7+
private long[] pow2 = new long[100001];
88

99
public int assignEdgeWeights(int[][] edges) {
1010
if (pow2[0] == 0) {

0 commit comments

Comments
 (0)