// Initial Requirements
// Given an input of an array of dates within a 1 week window, return a string that represents those dates
// Concatenate adjacent days of the week, and comma seperate non-adjacent days
// Input: ["2021-08-23", "2021-08-24", "2021-08-25"] Output: "Mon - Wed"
// Input: ["2021-08-24", "2021-08-26"] Output: "Tue, Thu"
// Input: ["2021-08-24", "2021-08-25", "2021-08-26", "2021-08-28"] Output: "Tue - Thu, Sat"
//
// Evolved Requirements. Arrive after first part has been implemented
// Support times as well.
// Input: ["2021-08-23T11:00:00Z/2021-08-23T13:00:00Z", "2021-08-24T11:00:00Z/2021-08-24T13:00:00Z", "2021-08-25T11:00:00Z/2021-08-25T13:00:00Z"]
// Output: "Mon - Wed, 11:00 - 13:00"
// Input: ["2021-08-23T13:00:00Z/2021-08-23T14:00:00Z", "2021-08-25T14:00:00Z/2021-08-25T15:00:00Z"]
// Output: "Mon 13:00 - 14:00, Wed 14:00 - 15:00"
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}