Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 211 Bytes

README.md

File metadata and controls

5 lines (4 loc) · 211 Bytes

Transcribing DNA into RNA

https://rosalind.info/problems/rna/

Solution

To get the RNA string u from the DNA string s, we can replace all occurences of 'T' in s with 'U' using s.replace('T', 'U').