mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
367 B
19 lines
367 B
4 years ago
|
## Molecules Cells
|
||
4 years ago
|
|
||
4 years ago
|
### Instructions
|
||
4 years ago
|
|
||
|
Write two functions:
|
||
4 years ago
|
|
||
|
- `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)
|
||
4 years ago
|
|
||
|
Since both strands are a sequence of nucleotides. It will be given the four nucleotides and its complements
|
||
|
|
||
4 years ago
|
```
|
||
4 years ago
|
DNA | RNA
|
||
|
G - C
|
||
|
C - G
|
||
|
T - A
|
||
4 years ago
|
A - U
|
||
|
```
|