Skip to content

Commit 921057f

Browse files
committed
style: applied clang-format fixes
1 parent 974cc6b commit 921057f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ public static long compute(int n) {
5656
// The Bell number B_n is the first number in the n-th row
5757
return bellTriangle[n][0];
5858
}
59-
}
59+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ void testOverflowProtection() {
5050
// We expect an exception if the user asks for the impossible
5151
assertThrows(IllegalArgumentException.class, () -> BellNumbers.compute(26));
5252
}
53-
}
53+
}

0 commit comments

Comments
 (0)