题解 | #合并表记录#

合并表记录

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

a = int(input())
dic = {}
for i in range(a):
    tem = input().split( )
    index = int(tem[0])
    value = int(tem[1])
    if index in dic:##直接判断引索字符串在不在字典里
        dic[index] = dic[index] + value
    else:
        dic[index] = value
# print(sorted(dic.items()))     [(0, 3), (1, 2), (3, 4)]#sorted帮你转变成列表
# print(type((dic.items())))      <class 'dict_items'>
# print(dic.items())                  dict_items([(0, 3), (1, 2), (3, 4)])
for w in sorted(dic.items()):
    print(w[0],w[1])

【牛客站内】华为机试题练习记录

全部评论

相关推荐

Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
09-30 19:49
起名星人:蛮离谱的,直接要求转投销售
投递汇川技术等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务