public/subjects/molecules-cells
davhojt f7ddec3a1b docs(molecules-cells): correct grammar 2022-05-31 08:27:51 +02:00
..
README.md docs(molecules-cells): correct grammar 2022-05-31 08:27:51 +02:00

README.md

Molecules Cells

Instructions

Create two functions which accept a string, and return a string:

  • RNA: that converts a DNA strand into its compliment RNA strand.
  • DNA: that converts an RNA strand into its compliment DNA strand.

Compliments:

DNA | RNA
 G  -  C
 C  -  G
 T  -  A
 A  -  U

Each strand must be represented as upper case string, without spaces, eg: "ATCG" is a valid DNA strand.