mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-09 09:21:40 +08:00
add scripts and problemset
This commit is contained in:
48
算法题/display-table-of-food-orders-in-a-restaurant.html
Normal file
48
算法题/display-table-of-food-orders-in-a-restaurant.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<p>Given the array <code>orders</code>, which represents the orders that customers have done in a restaurant. More specifically <code>orders[i]=[customerName<sub>i</sub>,tableNumber<sub>i</sub>,foodItem<sub>i</sub>]</code> where <code>customerName<sub>i</sub></code> is the name of the customer, <code>tableNumber<sub>i</sub></code> is the table customer sit at, and <code>foodItem<sub>i</sub></code> is the item customer orders.</p>
|
||||
|
||||
|
||||
|
||||
<p><em>Return the restaurant's “<strong>display table</strong>”</em>. The “<strong>display table</strong>” is a table whose row entries denote how many of each food item each table ordered. The first column is the table number and the remaining columns correspond to each food item in alphabetical order. The first row should be a header whose first column is “Table”, followed by the names of the food items. Note that the customer names are not part of the table. Additionally, the rows should be sorted in numerically increasing order.</p>
|
||||
|
||||
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>Example 1:</strong></p>
|
||||
|
||||
|
||||
|
||||
<pre>
|
||||
|
||||
<strong>Input:</strong> orders = [["David","3","Ceviche"],["Corina","10","Beef Burrito"],["David","3","Fried Chicken"],["Carla","5","Water"],["Carla","5","Ceviche"],["Rous","3","Ceviche"]]
|
||||
|
||||
<strong>Output:</strong> [["Table","Beef Burrito","Ceviche","Fried Chicken","Water"],["3","0","2","1","0"],["5","0","1","0","1"],["10","1","0","0","0"]]
|
||||
|
||||
<strong>Explanation:
|
||||
|
||||
</strong>The displaying table looks like:
|
||||
|
||||
<strong>Table,Beef Burrito,Ceviche,Fried Chicken,Water</strong>
|
||||
|
||||
3 ,0 ,2 ,1 ,0
|
||||
|
||||
5 ,0 ,1 ,0 ,1
|
||||
|
||||
10 ,1 ,0 ,0 ,0
|
||||
|
||||
For the table 3: David orders "Ceviche" and "Fried Chicken", and Rous orders "Ceviche".
|
||||
|
||||
For the table 5: Carla orders "Water" and "Ceviche".
|
||||
|
||||
For the table 10: Corina orders "Beef Burrito".
|
||||
|
||||
</pre>
|
||||
|
||||
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
|
||||
|
||||
|
||||
<pre>
|
||||
|
Reference in New Issue
Block a user