horner-method-for-linked-list-binary

Status: IN

Binary-to-integer conversion from linked lists uses Horner's method (`result = result * 2 + node.val`), processing MSB-first in a single pass with O(1) space.

Source: entries/2026/06/06/convert-binary-number-in-a-linked-list-to-integer-solution.md

JSON