Skip to content

Commit 07e0482

Browse files
committed
Refactor code formatting and add newline at end of file in .clang-format
1 parent e66c763 commit 07e0482

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ IndentGotoLabels: true
8383
IndentPPDirectives: None
8484
IndentWidth: 4
8585
IndentWrappedFunctionNames: false
86-
#InsertNewlineAtEOF: true
86+
InsertNewlineAtEOF: true
8787
JavaScriptQuotes: Leave
8888
JavaScriptWrapImports: true
8989
KeepEmptyLinesAtTheStartOfBlocks: true

src/main/java/com/thealgorithms/backtracking/PowerSum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ private int sumRecursive(int remainingSum, int power, int currentNumber, int cur
4848

4949
return sumRecursive(remainingSum, power, currentNumber + 1, newSum) + sumRecursive(remainingSum, power, currentNumber + 1, currentSum);
5050
}
51-
}
51+
}

0 commit comments

Comments
 (0)