mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-02 14:12:17 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>给你两个 <strong>非空 </strong>链表来代表两个非负整数。数字最高位位于链表开始位置。它们的每个节点只存储一位数字。将这两数相加会返回一个新的链表。</p>\n\n<p>你可以假设除了数字 0 之外,这两个数字都不会以零开头。</p>\n\n<p> </p>\n\n<p><strong>示例1:</strong></p>\n\n<p><img alt=\"\" src=\"https://pic.leetcode-cn.com/1626420025-fZfzMX-image.png\" style=\"width: 302px; \" /></p>\n\n<pre>\n<strong>输入:</strong>l1 = [7,2,4,3], l2 = [5,6,4]\n<strong>输出:</strong>[7,8,0,7]\n</pre>\n\n<p><strong>示例2:</strong></p>\n\n<pre>\n<strong>输入:</strong>l1 = [2,4,3], l2 = [5,6,4]\n<strong>输出:</strong>[8,0,7]\n</pre>\n\n<p><strong>示例3:</strong></p>\n\n<pre>\n<strong>输入:</strong>l1 = [0], l2 = [0]\n<strong>输出:</strong>[0]\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li>链表的长度范围为<code> [1, 100]</code></li>\n\t<li><code>0 <= node.val <= 9</code></li>\n\t<li>输入数据保证链表代表的数字无前导 0</li>\n</ul>\n\n<p> </p>\n\n<p><strong>进阶:</strong>如果输入链表不能翻转该如何解决?</p>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Medium",
|
||||
"likes": 495,
|
||||
"likes": 501,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Add Two Numbers\", \"titleSlug\": \"add-two-numbers\", \"difficulty\": \"Medium\", \"translatedTitle\": \"\\u4e24\\u6570\\u76f8\\u52a0\"}]",
|
||||
@@ -149,7 +149,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"96K\", \"totalSubmission\": \"161.7K\", \"totalAcceptedRaw\": 96014, \"totalSubmissionRaw\": 161668, \"acRate\": \"59.4%\"}",
|
||||
"stats": "{\"totalAccepted\": \"99K\", \"totalSubmission\": \"166.3K\", \"totalAcceptedRaw\": 99042, \"totalSubmissionRaw\": 166326, \"acRate\": \"59.5%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
|
Reference in New Issue
Block a user