Skip to content

navneetlal/rna-transcription-csharp-problem

Repository files navigation

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

Instructions

# Add remote to the starter code
git remote add starter <URL To the Starter Code>

# To install and restore packages
dotnet restore

# To run and evaluate test cases
dotnet test RNATranscription.Test

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages