Skip to content

Commit 60259c5

Browse files
committed
Create 1290-convert-binary-number-in-a-linked-list-to-integer.js
1 parent b0f3f52 commit 60259c5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* function ListNode(val, next) {
4+
* this.val = (val===undefined ? 0 : val)
5+
* this.next = (next===undefined ? null : next)
6+
* }
7+
*/
8+
/**
9+
* @param {ListNode} head
10+
* @return {number}
11+
*/
12+
var getDecimalValue = function (head) {
13+
let value = 0; // initialize value to zero
14+
while (head) { // while loop will run till head becomes null
15+
value = (value << 1) | head.val; // used left shift operator (<<) and bitwise OR (|) operator returns a number from binary
16+
head = head.next; // next value of head
17+
}
18+
19+
return value; // return the value
20+
};

0 commit comments

Comments
 (0)