Panda Guru LogoPanda
Guru

Cloud Kitchen | SWE | Bay Area (Reject)

Technical Phone Screen

Questions: You have been tasked with parsing menus from a large restaurant group. Each menu is streamed to clients via a provided interface. You must design object(s) that represents a menu and can be instantiated with data from the provided interface. Your design should contain an appropriate class structure to contain the parsed data, as well as a function or set of functions to perform the parsing.

Consumers will use your object(s) to access a complete representation of the data sent by the menu stream after it has finished loading. Your objects should provide easy access to the full representation of the menu. It should be possible to reconstruct the menu stream from your object.

The menu stream represents a list of menu items. Each line in the stream is a property of a menu item, and each item will be separated by an empty string. The attributes of each item are as follows:

Example menu stream:

4 DISH Spaghetti 10.95 2 3 1 CATEGORY Pasta 4 5 2 OPTION Meatballs 1.00 3 OPTION Chicken 2.00 5 DISH Lasagna 12.00 6 DISH Caesar Salad 9.75 3
Candidate's Approach

No approach provided.

Interviewer's Feedback

No feedback provided.