java
java copied to clipboard
Exercism exercises in Java.
Hi, In the **Hamming exercise**, we have to throw exceptions for different situations : - If the two strands are not the same length (IllegalArgumentException("leftStrand and rightStrand must be of...
# pull request Related to #2133 This PR adds stubs for practice exercises starting with letters S through to V. The following exercises have been omitted from this PR as...
# pull request Closes https://github.com/exercism/java/issues/2157 --- Reviewer Resources: [Track Policies](https://github.com/exercism/java/blob/main/POLICIES.md#event-checklist)
Just noticed while running through DnD character that if you follow it strictly test-driven (bare minimum-functionality to get the tests passing), you can skip the whole random-generation aspect of the...
Calculator Conumdrum is not available in Java despite it has a directory and is available on C# path
settings.gradle doesn't include calculator conumdrum, it's not on the Java website either. but c# has this path available. Recommend to remove this from Java or add this to the settings.gradle...
Recently in my mentoring, I noticed that some exercises have some files that are part of the solution (but the student shouldn't modify them) that are not appearing on the...
A possible solution to this exercise would be to use recursion. However, a likely error in using recursion would be to place the steps as a field instead of a...
# pull request This PR reworks our current loop structure (`for` and `for-each`) into one big single concept called loops and also introduces `while` and `do-while` loops closes [#2625](https://github.com/exercism/java/issues/2625) Reviewer...
# pull request closes [#2674](https://github.com/exercism/java/issues/2674) Reviewer Resources: [Track Policies](https://github.com/exercism/java/blob/main/POLICIES.md#event-checklist)
I was checking the ``Python`` exercism track, and I saw that it covers all the loops in a single concept called ``Loops`` and as the Java track does not cover...