mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 00:25:22 +08:00
14 lines
212 B
Markdown
14 lines
212 B
Markdown
# [206. Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/description/)
|
|
|
|
## 题目
|
|
|
|
Reverse a singly linked list.
|
|
|
|
## 题目大意
|
|
|
|
翻转单链表
|
|
|
|
|
|
## 解题思路
|
|
|
|
按照题意做即可。 |