Skip to content

Commit c83cd4f

Browse files
add newline
1 parent 488fa21 commit c83cd4f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ public static boolean isSquareFree(int num) {
3131
}
3232
return true;
3333
}
34-
}
34+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ void testInvalidInput() {
3131
assertThrows(IllegalArgumentException.class, () -> SquareFreeInteger.isSquareFree(0));
3232
assertThrows(IllegalArgumentException.class, () -> SquareFreeInteger.isSquareFree(-5));
3333
}
34-
}
34+
}

0 commit comments

Comments
 (0)