Skip to content

Instantly share code, notes, and snippets.

View ABDSMADAGZOUL's full-sized avatar

ABDESSAMAD AGZOUL ABDSMADAGZOUL

View GitHub Profile
@voidnerd
voidnerd / dna.py
Last active September 29, 2022 10:27
CS50 Problem Set 6 - DNA Solution
from csv import reader, DictReader
from sys import argv, exit
sequences = {}
#validate input
if len(argv) < 3:
print("Usage:", "python dna.py data.csv sequence.txt")
exit(1);