lots of exercises in java... from https://github.com/exercism/java
Stuart Kent eacc900aa4 Regenerate READMEs 8 vuotta sitten
..
.meta/src/reference/java Restructure exercise directory 9 vuotta sitten
src Restructure exercise directory 9 vuotta sitten
README.md Regenerate READMEs 8 vuotta sitten
build.gradle Issue #200: Replaced assertj assertions in nucleotide-count tests with junit and assertj assertions. Removed assertj from nucleotide-count gradle build file. Added extra hamcrest library to nucleotide-count gradle build file to be able to use hasEntry for maps. 9 vuotta sitten

README.md

Nucleotide Count

Given a single stranded DNA string, compute how many times each nucleotide occurs in the string.

The genetic language of every living thing on the planet is DNA. DNA is a large molecule that is built from an extremely long sequence of individual elements called nucleotides. 4 types exist in DNA and these differ only slightly and can be represented as the following symbols: 'A' for adenine, 'C' for cytosine, 'G' for guanine, and 'T' thymine.

Here is an analogy:

  • twigs are to birds nests as
  • nucleotides are to DNA as
  • legos are to lego houses as
  • words are to sentences as...

Running the tests

You can run all the tests for an exercise by entering

$ gradle test

in your terminal.

Source

The Calculating DNA Nucleotides_problem at Rosalind http://rosalind.info/problems/dna/

Submitting Incomplete Solutions

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