Skip to content

Commit 426a50d

Browse files
refactor 206
1 parent e243497 commit 426a50d

File tree

1 file changed

+0
-12
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-12
lines changed

src/main/java/com/fishercoder/solutions/_206.java

-12
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,6 @@
22

33
import com.fishercoder.common.classes.ListNode;
44

5-
/**
6-
* 206. Reverse Linked List
7-
*
8-
* Reverse a singly linked list.
9-
*
10-
* Example:
11-
* Input: 1->2->3->4->5->NULL
12-
* Output: 5->4->3->2->1->NULL
13-
*
14-
* Follow up:
15-
* A linked list can be reversed either iteratively or recursively. Could you implement both?
16-
* */
175
public class _206 {
186

197
public static class Solution1 {

0 commit comments

Comments
 (0)