// Un array di numeri non negativi senza elementi ripetuti.
// Deve essere convertito in una stringa, unendo numeri consecutivi in intervalli.
//
// Esempio: [1, 4, 5, 2, 3, 9, 8, 11, 0, 13] -> "0-5,8-9,11,13"
func listToRanges(items []int) string {
// TODO: implementa
return ""
}