Sha256: 19988ed023d0ab10f4d39e7eea1abd043c8b48da3204869e19b0bee994587f55

Contents?: true

Size: 984 Bytes

Versions: 74

Compression:

Stored size: 984 Bytes

Contents

# RNA Transcription

Given a DNA strand, return its RNA complement (per RNA transcription).

Both DNA and RNA strands are a sequence of nucleotides.

The four nucleotides found in DNA are adenine (**A**), cytosine (**C**),
guanine (**G**) and thymine (**T**).

The four nucleotides found in RNA are adenine (**A**), cytosine (**C**),
guanine (**G**) and uracil (**U**).

Given a DNA strand, its transcribed RNA strand is formed by replacing
each nucleotide with its complement:

* `G` -> `C`
* `C` -> `G`
* `T` -> `A`
* `A` -> `U`


To run the tests:

```sh
$ pub run test
```

For more detailed info about the Dart track see the [help page](http://exercism.io/languages/dart).

## Source

Hyperphysics [http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html](http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html)

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

Version data entries

74 entries across 74 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.118 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.117 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.116 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.115 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.114 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.113 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.111 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.110 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.109 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.108 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.107 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.106 tracks/dart/exercises/rna-transcription/README.md
trackler-2.2.1.105 tracks/dart/exercises/rna-transcription/README.md