Implementation of cross-correlation, CrossCorrelation test class, auto-correlation and AutoCorrelation test class
- [x] I have read CONTRIBUTING.md.
- [x] This pull request is all my own work -- I have not plagiarized it.
- [x] 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
This solves the issues #4982 and #4983
Please fix the PR check
In the details of the "Clang format linter / build" , it says this : --- ./src/test/java/com/thealgorithms/maths/AutoCorrelationTest.java (original) +++ ./src/test/java/com/thealgorithms/maths/AutoCorrelationTest.java (reformatted) @@ -34,4 +34,4 @@ } return result; } -}+} I don't really understand what I sould do here
In the details of the "Clang format linter / build" , it says this : --- ./src/test/java/com/thealgorithms/maths/AutoCorrelationTest.java (original) +++ ./src/test/java/com/thealgorithms/maths/AutoCorrelationTest.java (reformatted) @@ -34,4 +34,4 @@ } return result; } -}+} I don't really understand what I sould do here
Ok I fixed it
Please fix the PR check
Done!
Looks good, thanks!
You're welcome!
