mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
style: enable MultipleVariableDeclarations in checkstyle (#5175)
Co-authored-by: vaibhav <vaibhav.waghmare@techprescient.com>
This commit is contained in:
@@ -8,7 +8,8 @@ package com.thealgorithms.backtracking;
|
||||
*/
|
||||
public class PowerSum {
|
||||
|
||||
private int count = 0, sum = 0;
|
||||
private int count = 0;
|
||||
private int sum = 0;
|
||||
|
||||
public int powSum(int N, int X) {
|
||||
Sum(N, X, 1);
|
||||
|
||||
Reference in New Issue
Block a user