Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 659 Bytes

instructions.md

File metadata and controls

20 lines (13 loc) · 659 Bytes

Instructions

Your task is determine the RNA complement of a given DNA sequence.

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
If you want to look at how the inputs and outputs are structured, take a look at the examples in the test suite.