Solve a few problems
This commit is contained in:
commit
59de67963d
14 changed files with 101 additions and 0 deletions
7
02_rna/rna.nim
Normal file
7
02_rna/rna.nim
Normal file
|
@ -0,0 +1,7 @@
|
|||
import os
|
||||
import std/strutils
|
||||
|
||||
let fileName = paramStr(1)
|
||||
let dna = readFile(fileName)
|
||||
let rna = multiReplace(dna, ("T", "U"))
|
||||
echo rna
|
Loading…
Add table
Add a link
Reference in a new issue