To do the lookup initialization correctly
[https://siliconheaven.info/language-phenotypes-c-python-5] to match on int
codes only add the function
public static IEnumerable<KeyValuePair<int, int>> ExpectedLookupCodes(string element, int total)
{
return element.ToCharArray().Select(componentChar => new KeyValuePair<int, int>((int)componentChar, total))
.ToList(