From 77d9dab4d345cf191d868f1b05cf5c1d091a7f3f Mon Sep 17 00:00:00 2001 From: lee Date: Wed, 10 Jun 2020 12:20:23 +0100 Subject: [PATCH] formating molecules.cells exercise --- subjects/molecules-cells.en.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/subjects/molecules-cells.en.md b/subjects/molecules-cells.en.md index 78b33e335..dfefda742 100644 --- a/subjects/molecules-cells.en.md +++ b/subjects/molecules-cells.en.md @@ -3,13 +3,16 @@ ### Instructions Write two functions: - - `RNA` that given a DNA strand it must return is complement RNA - - `DNA` that given a RNA strand it must return is complement DNA (invert RNA) + +- `RNA` that given a DNA strand it must return is complement RNA +- `DNA` that given a RNA strand it must return is complement DNA (invert RNA) Since both strands are a sequence of nucleotides. It will be given the four nucleotides and its complements +``` DNA | RNA G - C C - G T - A - A - U \ No newline at end of file + A - U +```