export function RandomListNode(x) { this.label = x this.next = null this.random = null } export function Clone(pHead) { console.log(pHead) }
5a2b2
c0f2d
6ff0a