Solve a few problems

This commit is contained in:
Alberto Venturini 2024-09-01 17:02:41 +02:00
commit 59de67963d
14 changed files with 101 additions and 0 deletions

7
02_rna/rna.nim Normal file
View 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