You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
327 B
21 lines
327 B
/**
|
|
* File: ListNode
|
|
* Created Time: 2023-01-23
|
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
|
*/
|
|
|
|
/**
|
|
* Definition for a singly-linked list node
|
|
*/
|
|
class ListNode {
|
|
int val;
|
|
ListNode? next;
|
|
|
|
ListNode(this.val, [this.next]);
|
|
|
|
@override
|
|
String toString() {
|
|
return 'ListNode{val: $val, next: $next}';
|
|
}
|
|
}
|