P11 两数之和,难度中等。
题目
English
1 | You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list. |
中文
1 | 给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。 |
解题
伪代码描述
分析及源码
Python代码
1 | # Definition for singly-linked list. |
执行结果:
1 | 执行用时 :76 ms, 在所有 python 提交中击败了15.18%的用户 |
本文作者:
Yao Zhu
发布时间: 2019-12-21
最后更新: 2019-12-21
本文链接: https://juoyo.github.io/posts/7a7dd633.html
版权声明: 本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。转载请注明出处!
发布时间: 2019-12-21
最后更新: 2019-12-21
本文链接: https://juoyo.github.io/posts/7a7dd633.html
版权声明: 本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。转载请注明出处!