Apologies if I've done something dumb.
The online tests appear to be failing to run for the C# "Football Match Reports" problem.
When I submitted the below code, the "Tests" tab on the website displays the attached compile error.
public static class PlayAnalyzer
{
public static string AnalyzeOnField(int shirtNum)
{
throw new NotImplementedException($"AAAA");
}
public static string AnalyzeOffField(object report)
{
throw new NotImplementedException($"BBBB");
}
}