namespace BridgeRepair; class PuzzleParser { public List Parse(string[] input) { return input.Select(s => s.ToEquation()).ToList(); } }