Sha256: a282f791ce81bede0484c463bc90b436b5d863324e6e8f09c9afd44748f15bed
Contents?: true
Size: 359 Bytes
Versions: 217
Compression:
Stored size: 359 Bytes
Contents
" " Given a DNA string, compute how many times each nucleotide occurs in the " string. " " Examples: " " :echo NucleotideCount('ACGTACGT') " {'A': 2, 'C': 2, 'T': 2, 'G': 2} " " :echo NucleotideCount('ACGTXACGT') " E605: Exception not caught: invalid nucleotide in strand " function! NucleotideCount(strand) abort " your code goes here endfunction
Version data entries
217 entries across 217 versions & 1 rubygems