fix the error about assignment to constant

pull/157/head
JoseHung 2 years ago
parent bb20cb9db2
commit c3395be905

@ -22,7 +22,7 @@ class ListNode {
*/
arrToLinkedList(arr) {
const dum = new ListNode(0);
const head = dum;
let head = dum;
for (const val of arr) {
head.next = new ListNode(val);
head = head.next;

Loading…
Cancel
Save