leetcode1290

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1290相关的知识,希望对你有一定的参考价值。

 1 class Solution:
 2     def getDecimalValue(self, head: ListNode) -> int:
 3         res = 0
 4         lists = []
 5         while head != None:
 6             lists.append(head.val)
 7             head = head.next
 8         pos = 0
 9         for i in range(len(lists)-1,-1,-1):
10             res += lists[i] * (2 ** pos)
11             pos += 1
12         return res

 

以上是关于leetcode1290的主要内容,如果未能解决你的问题,请参考以下文章

算法leetcode1290. 二进制链表转整数(多语言实现)

算法leetcode1290. 二进制链表转整数(多语言实现)

LeetCode1290. 二进制链表转整数

LeetCode --- 1290. Convert Binary Number in a Linked List to Integer 解题报告

1290. 二进制链表转整数

1290. Convert Binary Number in a Linked List to Integer