mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-22 03:24:57 +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:
@ -109,4 +109,4 @@ public class Fibonacci {
|
||||
int nthTerm = (int) ((Math.pow(phi, n) - Math.pow(-phi, -n)) / squareRootOf5);
|
||||
return nthTerm;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -126,4 +126,4 @@ public class OptimalJobScheduling {
|
||||
public int getCost(int process, int machine) {
|
||||
return Cost[process][machine];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user