You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

847 B

reversemenuindex

Instructions

The restaurant employees are having a really tough day and are delivering the customers' food in the wrong order. You need to fix the problem so that they can deliver it correctly.

Write a function ReverseMenuIndex() that takes a slice of strings as an argument and returns another slice of strings with the menu in the correct order.

  • append() is not allowed for this exercise.

Expected function

func ReverseMenuIndex(menu []string) []string {

}

Usage

Here is a possible program to test your function:

package main

import (
        "fmt"
        "piscine"
)

func main() {
        fmt.Println(piscine.ReverseMenuIndex([]string{"desserts", "mains", "drinks", "starters"}))
}

And its output:

$ go run . | cat -e
[starters drinks mains desserts]$