lots of exercises in java... from https://github.com/exercism/java
Katrina Owen 5671e6bf86 Generate the exercise READMEs from the new templates 9 년 전
..
.meta Add exercise README templates 9 년 전
src isogram: add hint to @Ignore annotations 9 년 전
HINTS.md Rename hint files so they are actually included in README 9 년 전
README.md Generate the exercise READMEs from the new templates 9 년 전
build.gradle Format build.gradle files 9 년 전

README.md

Isogram

Determine if a word or phrase is an isogram.

An isogram (also known as a "nonpattern word") is a word or phrase without a repeating letter.

Examples of isograms:

  • lumberjacks
  • background
  • downstream

The word isograms, however, is not an isogram, because the s repeats.

If you find that testWorksWithGermanLetters fails even though you think you've implemented it correctly, this could be because of the JVM encoding. Try setting the JAVA_TOOL_OPTIONS environment variable to -Dfile.encoding=UTF8 to fix this.

To run the tests:

$ gradle test

For more detailed info about the Java track see the help page.

Source

Wikipedia https://en.wikipedia.org/wiki/Isogram

Submitting Incomplete Solutions

It's possible to submit an incomplete solution so you can see how others have completed the exercise.