function printLinkedList(head) {
let current = head;
while(current){
console.log(current.data);
current = current.next;
}
}
For further actions, you may consider blocking this person and/or reporting abuse
function printLinkedList(head) {
let current = head;
while(current){
console.log(current.data);
current = current.next;
}
}
For further actions, you may consider blocking this person and/or reporting abuse
David Y Soards -
Harish Kumar -
Eddie Gulay -
Viktor Le -
Top comments (0)