8000 fix build · vikashsahu4/Leetcode@9969294 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9969294

Browse files
fix build
1 parent 65d0813 commit 9969294

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+2
-2
lines changed

src/main/java/com/fishercoder/solutions/_830.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public static class Solution1 {
3333
public List<List<Integer>> largeGroupPositions(String S) {
3434
List<List<Integer>> result = new ArrayList<>();
3535
char[] chars = S.toCharArray();
36-
for (int i = 0; i < chars.length;) {
36+
for (int i = 0; i < chars.length; ) {
3737
char first = chars[i];
38-
int j = i+1;
38+
int j = i + 1;
3939
while (j < chars.length && first == chars[j]) {
4040
j++;
4141
}

0 commit comments

Comments
 (0)
0