Sha256: db7e8c57f462aa167a131203eb267b31b1aef0a38631eb6c8360192339fc1e31
Contents?: true
Size: 488 Bytes
Versions: 143
Compression:
Stored size: 488 Bytes
Contents
using System; using System.Collections.Generic; public class DNA { public DNA(string sequence) { } public IDictionary<char, int> NucleotideCounts { get { throw new NotImplementedException("You need to implement this function."); } } public int Count(char nucleotide) { throw new NotImplementedException("You need to implement this function."); } } public class InvalidNucleotideException : Exception { }
Version data entries
143 entries across 143 versions & 1 rubygems