Skip to content

Commit 35468ca

Browse files
authored
Update Solution.java
1 parent 2e7759d commit 35468ca

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/g2501_2600/s2552_count_increasing_quadruplets

1 file changed

+1
-1
lines changed

src/main/java/g2501_2600/s2552_count_increasing_quadruplets/Solution.java

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

66
import java.util.Arrays;
77

8-
class Solution {
8+
public class Solution {
99
public long countQuadruplets(int[] nums) {
1010
int n = nums.length;
1111
long[] dp = new long[n];

0 commit comments

Comments
 (0)