One Pass
One pointer
Array to Linked List
1290. Convert Binary Number in a Linked List to Integer
Easy2 solutions2 playgrounds
Solutions:
The accumulator number appears in the variables panel — each step shows number = number * 2 + curr.val (or bit-shift in the second solution). The step's description line shows the formula at that bit; watch number grow as curr advances. The legacy view drew this on a separate formula panel.
3263. Convert Doubly Linked List to Array I
Easy2 solutions1 playground
Solutions:
3294. Convert Doubly Linked List to Array II
Medium2 solutions1 playground
Solutions:
The deque grows in the variables panel — first phase prepends with appendleft (walking left via prev), then phase two appends with append (walking right via next). The legacy view used a custom widget with a direction banner; here, watch the array line in the variables panel and the phase chip.