Skip to content

Commit 93b196e

Browse files
committed
issue #9 141-ing
1 parent 3ac9dfe commit 93b196e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package leetcodeEasyLevel._0141;
2+
3+
public class LinkedListCycle {
4+
5+
public boolean hasCycle(ListNode head) {
6+
7+
}
8+
}
9+
10+
class ListNode {
11+
12+
int val;
13+
ListNode next;
14+
15+
ListNode(int x) {
16+
val = x;
17+
next = null;
18+
}
19+
}

0 commit comments

Comments
 (0)