Linked List to Integer
Given a single linked list node
, representing a binary number with most significant digits first, return it as an integer.
Constraints
n ≤ 30
wheren
the number of nodes innode
https://binarysearch.com/problems/Linked-List-to-Integer
Examples
Example 1
Input
- node =
Output
- answer =
4
Explanation
The linked list represented 100
in binary.
Leave a comment