Skip to content

Commit f1cc7ff

Browse files
solved linter2
1 parent 3966e97 commit f1cc7ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
public class PowerUsingRecursion {
9-
9+
1010
public static double power(double base, int exponent) {
1111
// Base case: anything raised to the power of 0 is 1
1212
if (exponent == 0) {

0 commit comments

Comments
 (0)