Sha256: 448430d3fcc16e9553904bd34f905da284b6d844d2026b887fbdbe41f24cf68d

Contents?: true

Size: 950 Bytes

Versions: 75

Compression:

Stored size: 950 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`

## Setup

Go through the project setup instructions for Xcode using Swift:

http://exercism.io/languages/swift


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

75 entries across 75 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.179 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.178 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.177 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.176 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.175 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.174 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.173 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.172 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.171 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.170 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.169 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.167 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.166 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.165 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.164 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.163 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.162 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.161 tracks/swift/exercises/rna-transcription/README.md
trackler-2.2.1.160 tracks/swift/exercises/rna-transcription/README.md