exercism/csharp/nucleotide-count
Ben Harris 588f26458c create solution and update all to .net 6 2021-11-10 15:09:57 -05:00
..
NucleotideCount.cs init 2018-03-02 17:27:55 -05:00
NucleotideCount.csproj create solution and update all to .net 6 2021-11-10 15:09:57 -05:00
NucleotideCountTest.cs init 2018-03-02 17:27:55 -05:00
README.md init 2018-03-02 17:27:55 -05:00

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...

Hints

This exercise requires the use of a Dictionary. For more information see this page.

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.