Java
Java copied to clipboard
feat(matrix): Implement determinant calculation for square matrices
- [x] I have read CONTRIBUTING.md.
- [x] This pull request is all my own work -- I have not plagiarized it.
- [ ] All filenames are in PascalCase.
- [x] All functions and variable names follow Java naming conventions.
- [x] All new algorithms have a URL in their comments that points to Wikipedia or other similar explanations.
- [x] All new code is formatted with
clang-format -i --style=file path/to/your/file.java
Codecov Report
:white_check_mark: All modified and coverable lines are covered by tests.
:white_check_mark: Project coverage is 78.29%. Comparing base (a4cf6e3) to head (d09a8ff).
Additional details and impacted files
@@ Coverage Diff @@
## master #6953 +/- ##
============================================
+ Coverage 78.26% 78.29% +0.02%
- Complexity 6567 6577 +10
============================================
Files 743 744 +1
Lines 21886 21911 +25
Branches 4284 4293 +9
============================================
+ Hits 17129 17155 +26
+ Misses 4074 4073 -1
Partials 683 683
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
:rocket: New features to boost your workflow:
- :snowflake: Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
@DenizAltunkapan @yanglbme @alxkm i have added a code, please review it
@Rony-2004 whats the difference between your implementation and https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/maths/DeterminantOfMatrix.java ?