Skip to content

Commit 5f302cc

Browse files
committed
Fixed style
1 parent d9dbaba commit 5f302cc

File tree

1 file changed

+2
-1
lines changed
  • src/main/java/g3401_3500/s3490_count_beautiful_numbers

1 file changed

+2
-1
lines changed

src/main/java/g3401_3500/s3490_count_beautiful_numbers/Solution.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ private int solve(
4242
} else {
4343
limit = 9;
4444
}
45-
int count = 0, j = 0;
45+
int count = 0;
46+
int j = 0;
4647
while (j <= limit) {
4748
int newTight = 0;
4849
if (tight == 1 && j == limit) {

0 commit comments

Comments
 (0)