Skip to content

Commit 5786cd2

Browse files
xzhsehyanglbme
authored andcommitted
chore: format code with clang-format
1 parent 5653682 commit 5786cd2

File tree

1 file changed

+1
-1
lines changed
  • solution/2800-2899/2811.Check if it is Possible to Split Array

1 file changed

+1
-1
lines changed

solution/2800-2899/2811.Check if it is Possible to Split Array/Solution.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ class Solution {
22
private Boolean[][] f;
33
private int[] s;
44
private int m;
5-
5+
66
public boolean canSplitArray(List<Integer> nums, int m) {
77
int n = nums.size();
88
f = new Boolean[n][n];

0 commit comments

Comments
 (0)