mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 14:34:05 +08:00
chore: enforce InsertNewlineAtEOF
in clang-format
(#4343)
* style: insert newline at eof * style: use `InsertNewlineAtEOF` in `clang-format` * fix: use `clang-format-16` * chore: update clang-format-lint-action to v0.16.2 --------- Co-authored-by: Debasish Biswas <debasishbsws.dev@gmail.com>
This commit is contained in:
@ -31,4 +31,4 @@ public class KnapsackMemoizationTest {
|
||||
int capacity = 50;
|
||||
assertEquals(220, knapsackMemoization.knapSack(capacity, weight, value, weight.length));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -95,4 +95,4 @@ public class OptimalJobSchedulingTest {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -21,4 +21,4 @@ class PartitionProblemTest {
|
||||
public void testIfSumOfTheArrayIsEven2() {
|
||||
assertFalse(PartitionProblem.partition(new int[] {1, 2, 3, 8}));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user