leetcode 1418
Posted 东东就是我
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 1418相关的知识,希望对你有一定的参考价值。
class Solution:
def displayTable(self, orders: List[List[str]]) -> List[List[str]]:
foods = set()
res = []
table_info = collections.defaultdict(lambda: collections.defaultdict(int))
for _, table, food in orders:
table_info[table][food] += 1
foods.add(food)
foods = sorted(foods)
res.append(['Table'] + foods)
for info in sorted(table_info, key=lambda x: int(x)):
temp = [info]
for food in foods:
temp.append(str(table_info.get(info).get(food, 0)))
res.append(temp)
return res
lambda x:int(x)= def f(x):
return int(x)
:前面的x表示要传入的参数,:后面表示要输出的结果
from collections import defaultdict
table_info = defaultdict(lambda: defaultdict(int))
table_info['1']['fodd']=1
print(table_info)
{'1': defaultdict(<class 'int'>, {'fodd': 1})})
嵌套字典,
以上是关于leetcode 1418的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 1418. 点菜展示表 / NC103 反转字符串 / NC33 合并有序链表 / NC61两数之和
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段