mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-12-13 22:22:37 +08:00
存量题库数据更新
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<p><em>Merge all the linked-lists into one sorted linked-list and return it.</em></p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> lists = [[1,4,5],[1,3,4],[2,6]]
|
||||
@@ -18,14 +18,14 @@ merging them into one sorted list:
|
||||
1->1->2->3->4->4->5->6
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> lists = []
|
||||
<strong>Output:</strong> []
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> lists = [[]]
|
||||
|
||||
Reference in New Issue
Block a user