Skip to content

Commit d13cf6a

Browse files
committed
fix: update
1 parent d49f0d8 commit d13cf6a

File tree

1 file changed

+1
-1
lines changed
  • solution/3300-3399/3388.Count Beautiful Splits in an Array

1 file changed

+1
-1
lines changed

solution/3300-3399/3388.Count Beautiful Splits in an Array/Solution.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Solution {
1111
}
1212
}
1313
}
14-
14+
1515
int ans = 0;
1616
for (int i = 1; i < n - 1; i++) {
1717
for (int j = i + 1; j < n; j++) {

0 commit comments

Comments
 (0)