mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 07:21:40 +08:00
存量题库数据更新
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<p><strong>Do not modify</strong> the linked list.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2018/12/07/circularlinkedlist.png" style="height: 145px; width: 450px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> head = [3,2,0,-4], pos = 1
|
||||
@@ -13,7 +13,7 @@
|
||||
<strong>Explanation:</strong> There is a cycle in the linked list, where tail connects to the second node.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2018/12/07/circularlinkedlist_test2.png" style="height: 105px; width: 201px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> head = [1,2], pos = 0
|
||||
@@ -21,7 +21,7 @@
|
||||
<strong>Explanation:</strong> There is a cycle in the linked list, where tail connects to the first node.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2018/12/07/circularlinkedlist_test3.png" style="height: 65px; width: 65px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> head = [1], pos = -1
|
||||
|
Reference in New Issue
Block a user