fix the error about assignment to constant
This commit is contained in:
parent
bb20cb9db2
commit
c3395be905
@ -22,7 +22,7 @@ class ListNode {
|
|||||||
*/
|
*/
|
||||||
arrToLinkedList(arr) {
|
arrToLinkedList(arr) {
|
||||||
const dum = new ListNode(0);
|
const dum = new ListNode(0);
|
||||||
const head = dum;
|
let head = dum;
|
||||||
for (const val of arr) {
|
for (const val of arr) {
|
||||||
head.next = new ListNode(val);
|
head.next = new ListNode(val);
|
||||||
head = head.next;
|
head = head.next;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user