Skip to content

Commit fcac2b1

Browse files
committed
Fix missing semicolon in ChineseRemainderTheorem class
1 parent 0a6e33e commit fcac2b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private static int modInverse(int a, int m) {
5353
int x1 = 1;
5454

5555
if (m == 1) {
56-
return 0
56+
return 0;
5757
};
5858

5959
while (a > 1) {

0 commit comments

Comments
 (0)