题解 | #合并表记录#

合并表记录

http://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201

def my_func(data):
    res = dict()
    pairs = data[1:]
    for i in pairs:
        ind, ind_value = i.split(" ")
        if ind not in res:
            res[ind] = ind_value
        else:
            res[ind] = str(int(res[ind]) + int(ind_value))
    temp = sorted(res.items(), key=lambda x :int(x[0]), reverse=False)
    for key, value in temp:
        print(f"{key} {value}")













data = []
while True:
    try:
        data.append(input())
    except (EOFError, KeyboardInterrupt):
        break


my_func(data)
全部评论

相关推荐

11-03 14:38
重庆大学 Java
AAA求offer教程:我手都抬起来了又揣裤兜了
点赞 评论 收藏
分享
11-11 14:21
西京学院 C++
无敌混子大王:首先一点,不管学校层次怎么样,教育经历放在第一页靠上位置,第一页看不到教育经历,hr基本直接扔掉了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务