exercism

Exercism solutions.
git clone git://code.dwrz.net/exercism
Log | Files | Refs

README.md (760B)


      1 # Rna Transcription
      2 
      3 Given a DNA strand, return its RNA complement (per RNA transcription).
      4 
      5 Both DNA and RNA strands are a sequence of nucleotides.
      6 
      7 The four nucleotides found in DNA are adenine (**A**), cytosine (**C**),
      8 guanine (**G**) and thymine (**T**).
      9 
     10 The four nucleotides found in RNA are adenine (**A**), cytosine (**C**),
     11 guanine (**G**) and uracil (**U**).
     12 
     13 Given a DNA strand, its transcribed RNA strand is formed by replacing
     14 each nucleotide with its complement:
     15 
     16 * `G` -> `C`
     17 * `C` -> `G`
     18 * `T` -> `A`
     19 * `A` -> `U`
     20 ## Source
     21 
     22 Rosalind [http://rosalind.info/problems/rna](http://rosalind.info/problems/rna)
     23 
     24 ## Submitting Incomplete Solutions
     25 It's possible to submit an incomplete solution so you can see how others have completed the exercise.