mirror of https://github.com/01-edu/public.git
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.
1.1 KiB
1.1 KiB
fooddeliverytime
Instructions
Given the following menu with the corresponding times that each item takes to cook (burger takes 15 min, chips takes 10 min and nuggets takes 12 min), return the time that each order item takes to be prepared and the total amount of time for the order to be ready assuming the items are cooked one after the other.
Write a function FoodDeliveryTime()
that takes a string
and returns an int
.
- Use structs to answer the subject.
- If any of the order items don't exist in the menu above return the error message
404
.
Expected function
type food struct {
preptime int
}
func FoodDeliveryTime(order string) int {
}
Usage
Here is a possible program to test your function:
package main
import (
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.FoodDeliveryTime("burger"))
fmt.Println(piscine.FoodDeliveryTime("chips"))
fmt.Println(piscine.FoodDeliveryTime("nuggets"))
fmt.Println(piscine.FoodDeliveryTime("burger") + piscine.FoodDeliveryTime("chips") + piscine.FoodDeliveryTime("nuggets"))
}
And its output:
$ go run . | cat -e
15$
10$
12$
37$