java
java copied to clipboard
Exercism exercises in Java.
I noticed in the `squeaky-clean` problem, there's a test as follows: ```java // test/java/SqueakyCleanTest.java @Test public void string_with_no_letters() { assertThat(SqueakyClean.clean("\uD83D\uDE00\uD83D\uDE00\uD83D\uDE00")).isEmpty(); } ``` However, there's no corresponding [instruction](https://exercism.org/tracks/java/exercises/squeaky-clean) to remove "non-standard"...
Would it be okay to add JavaDoc comments for the methods for the problems, like the JavaScript track has?
I completed the bowling exercise but I found it a lot harder than all the previous exercises in the track. I can't imagine how it is for someone starting with...
_This issue is part of the migration to v3. You can read full details about the various changes [here](https://github.com/exercism/v3-launch/)._ Exercism v3 introduces a new type of exercise: [Concept Exercises](https://github.com/exercism/v3-docs/blob/main/product/concept-exercises.md). All...
The exercise **react** has not been implemented yet for the Java track. The description of the exercise can be found in the [problem specification repository](https://github.com/exercism/problem-specifications/tree/master/exercises/react). How to implement a new...
The exercise **dot-dsl** has not been implemented yet for the Java track. The description of the exercise can be found in the [problem specification repository](https://github.com/exercism/problem-specifications/tree/main/exercises/dot-dsl). How to implement a new...
The exercise **ledger** has not been implemented yet for the Java track. The description of the exercise can be found in the [problem specification repository](https://github.com/exercism/problem-specifications/tree/master/exercises/ledger). How to implement a new...
The exercise **lens-person** has not been implemented yet for the Java track. The description of the exercise can be found in the [problem specification repository](https://github.com/exercism/problem-specifications/tree/master/exercises/lens-person). How to implement a new...
The exercise **pov** has not been implemented yet for the Java track. The description of the exercise can be found in the [problem specification repository](https://github.com/exercism/problem-specifications/tree/master/exercises/pov). How to implement a new...
In the AffineCipher `README.md`, it states the value of `y` is the numeric value of an encrypted letter, ie. `y = E(x)`. Should `y = x`, where `x` is the...