8000 fix build · ashishkumar468/Leetcode@2f9568f · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f9568f

Browse files
fix build
1 parent 4b30625 commit 2f9568f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* */
3535
public class _1323 {
3636
public static class Solution1 {
37-
public int maximum69Number (int num) {
37+
public int maximum69Number(int num) {
3838
char[] chars = Integer.toString(num).toCharArray();
3939
IntStream.range(0, chars.length).filter(i -> chars[i] == '6').findFirst().ifPresent(i -> chars[i] = '9');
4040
return Integer.parseInt(new String(chars));

0 commit comments

Comments
 (0)
0