Exemplo n.º 1
0
        public string Solution(string input)
        {
            List <Point> points = pointsRepository.GetPoints(input);

            (string message, _) = this.message.FindMessageWhichAppearsInTheSky(points);

            return(message);
        }
Exemplo n.º 2
0
        public int Solution(string input)
        {
            List <Point> points = pointsRepository.GetPoints(input);

            (_, int secondsNeededForMessageToAppear) = message.FindMessageWhichAppearsInTheSky(points);

            return(secondsNeededForMessageToAppear);
        }