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

Skip to content 8000

Commit e6ac336

Browse files
fix build
1 parent 5421d06 commit e6ac336

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ public int findMaxForm(String[] strs, int m, int n) {
4141

4242
private int[] count(String str) {
4343
int[] res = new int[2];
44-
for (int i = 0; i < str.length(); i++)
44+
for (int i = 0; i < str.length(); i++) {
4545
res[str.charAt(i) - '0']++;
46+
}
4647
return res;
4748
}
4849
}

0 commit comments

Comments
 (0)
0