Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 833 Bytes

File metadata and controls

45 lines (28 loc) · 833 Bytes

Exercism.io\Rna Transcription

Description

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

Input

A string representing DNA.

Output

A string representing RNA.

Sample Input/Output

Input Output
'C' 'G'
'G' 'C'
'T' 'A'
'A' 'U'
'ACGTGGTCTTAA' 'UGCACCAGAAUU'