Skip to content

Commit 5280c50

Browse files
committed
Add README.md
1 parent 8a40fcb commit 5280c50

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Rna Transcription
2+
3+
Given a DNA strand, return its RNA complement (per RNA transcription).
4+
5+
Both DNA and RNA strands are a sequence of nucleotides.
6+
7+
The four nucleotides found in DNA are adenine (**A**), cytosine (**C**),
8+
guanine (**G**) and thymine (**T**).
9+
10+
The four nucleotides found in RNA are adenine (**A**), cytosine (**C**),
11+
guanine (**G**) and uracil (**U**).
12+
13+
Given a DNA strand, its transcribed RNA strand is formed by replacing
14+
each nucleotide with its complement:
15+
16+
* `G` -> `C`
17+
* `C` -> `G`
18+
* `T` -> `A`
19+
* `A` -> `U`
20+
## Source
21+
22+
Rosalind [http://rosalind.info/problems/rna](http://rosalind.info/problems/rna)
23+
24+
## Submitting Incomplete Solutions
25+
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

0 commit comments

Comments
 (0)