1. Design and Implement a Restaurant System
Design and implement a system for a restaurant with the following requirements: The constructor of the restaurant takes in the maximum allowed time to order and MenuItems (you define MenuItem). You need to implement methods to order a meal, get the number of cooks, increment time, and get the current time at the restaurant. The restaurant starts with 0 cooks, time starts at 0, and cooks are added if the maximum wait time will be exceeded by the current order. Cooks can only work on one meal at a time and will not decrease once added. Each meal is assigned to the cook that can start it the soonest. You do not need to implement the method to print current orders.