Skip to content

Commit 3d22e19

Browse files
committed
Lint
1 parent 4989903 commit 3d22e19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/maths/KrishnamurthyNumber.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* <p>
2222
* <b>Example usage:</b>
2323
* </p>
24-
*
24+
*
2525
* <pre>
2626
* boolean isKrishnamurthy = KrishnamurthyNumber.isKrishnamurthy(145);
2727
* System.out.println(isKrishnamurthy); // Output: true
@@ -36,7 +36,7 @@
3636
public final class KrishnamurthyNumber {
3737

3838
// Pre-computed factorials for digits 0-9 to improve performance
39-
private static final int[] FACTORIALS = { 1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880 };
39+
private static final int[] FACTORIALS = {1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880};
4040

4141
private KrishnamurthyNumber() {
4242
}

0 commit comments

Comments
 (0)