deno.land / x / masx200_leetcode_test@10.6.5 / reverse-linked-list / ListNode.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
export class ListNode { val: number; next: ListNode | null; constructor(val?: number, next?: ListNode | null) { this.val = val === undefined ? 0 : val; this.next = next === undefined ? null : next; }}
masx200_leetcode_test

Version Info

Tagged at
a year ago