using System; using System.Collections.Generic; public class NucleotideCount { public NucleotideCount(string sequence) { } public IDictionary NucleotideCounts { get { throw new NotImplementedException("You need to implement this function."); } } } public class InvalidNucleotideException : Exception { }