using System; public enum ConnectWinner { White, Black, None } public class Connect { public Connect(string[] input) { throw new NotImplementedException("You need to implement this function."); } public ConnectWinner Result() { throw new NotImplementedException("You need to implement this function."); } }