Skip to content

Commit 6a53215

Browse files
committed
Fixed checkstyle error
1 parent 76de12c commit 6a53215

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/ciphers/HillCipher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ private int determinant(int[][] matrix, int n) {
8585
int sign = 1;
8686
int[][] subMatrix = new int[n - 1][n - 1];
8787
for (int x = 0; x < n; x++) {
88-
int sub_i = 0;
88+
int subI = 0;
8989
for (int i = 1; i < n; i++) {
90-
int sub_j = 0;
90+
int subJ = 0;
9191
for (int j = 0; j < n; j++) {
9292
if (j != x) {
9393
subMatrix[sub_i][sub_j++] = matrix[i][j];

0 commit comments

Comments
 (0)