MCPcopy Create free account
hub / github.com/ashishps1/awesome-leetcode-resources /

Class

patterns/javascript/reverseList.js:1–1  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class ListNode {
2 constructor(val = 0, next = null) {
3 this.val = val;
4 this.next = next;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected