-
Notifications
You must be signed in to change notification settings - Fork 20k
Add FindMaxRecursionTest #4431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FindMaxRecursionTest #4431
Conversation
Create FindMaxRecusionTest.java
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make the FindMaxRecursion
a proper utility class (i.e. marked as final
with private
default constructor).
Idea for future project: make all of the FindMax
(and FindMin
) like functions more uniform (i.e. same method names, same tests. etc.)
src/test/java/com/thealgorithms/maths/FindMaxRecursionTest.java
Outdated
Show resolved
Hide resolved
src/test/java/com/thealgorithms/maths/FindMaxRecursionTest.java
Outdated
Show resolved
Hide resolved
Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
I changed the requests and even the max function |
As mentioned earlier please add |
Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome!
@lukasb1b In order to merge this you need to update your branch (I do not have a permission to commit anything to your branch, so I cannot do it). |
Change so it has its own test and not the main methode