navneetlal / rna-transcription-csharp-problem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:Creative Commons Zero v1.0 Universal


Languages

Language:C# 100.0%