Skip to content

Commit 8230392

Browse files
committed
Create README - LeetHub
1 parent 8b8583f commit 8230392

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

206-reverse-linked-list/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<h2><a href="https://leetcode.com/problems/reverse-linked-list/">206. Reverse Linked List</a></h2><h3>Easy</h3><hr><div><p>Given the <code>head</code> of a singly linked list, reverse the list, and return <em>the reversed list</em>.</p>
2+
3+
<p>&nbsp;</p>
4+
<p><strong>Example 1:</strong></p>
5+
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/19/rev1ex1.jpg" style="width: 542px; height: 222px;">
6+
<pre><strong>Input:</strong> head = [1,2,3,4,5]
7+
<strong>Output:</strong> [5,4,3,2,1]
8+
</pre>
9+
10+
<p><strong>Example 2:</strong></p>
11+
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/19/rev1ex2.jpg" style="width: 182px; height: 222px;">
12+
<pre><strong>Input:</strong> head = [1,2]
13+
<strong>Output:</strong> [2,1]
14+
</pre>
15+
16+
<p><strong>Example 3:</strong></p>
17+
18+
<pre><strong>Input:</strong> head = []
19+
<strong>Output:</strong> []
20+
</pre>
21+
22+
<p>&nbsp;</p>
23+
<p><strong>Constraints:</strong></p>
24+
25+
<ul>
26+
<li>The number of nodes in the list is the range <code>[0, 5000]</code>.</li>
27+
<li><code>-5000 &lt;= Node.val &lt;= 5000</code></li>
28+
</ul>
29+
30+
<p>&nbsp;</p>
31+
<p><strong>Follow up:</strong> A linked list can be reversed either iteratively or recursively. Could you implement both?</p>
32+
</div>

0 commit comments

Comments
 (0)