Skip to content

Commit e71008f

Browse files
committed
Fixed clang-format issues
1 parent 3e9f039 commit e71008f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ private static boolean isPerfectSquare(int n) {
5050
int root = (int) Math.sqrt(n);
5151
return root * root == n;
5252
}
53-
}
53+
}

src/test/java/com/thealgorithms/maths/SumOfSquaresTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ void testEdgeCases() {
6565
// Test edge case
6666
assertEquals(1, SumOfSquares.minSquares(0)); // 0^2
6767
}
68-
}
68+
}

0 commit comments

Comments
 (0)