本文主要是介绍Leetcode 2125. Number of Laser Beams in a Bank [Python],希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
计算每行的1的数量,每两层之间的连线数量就是两层1的数量的乘积。
class Solution:def numberOfBeams(self, b: List[str]) -> int:line = []for row in b:acc = 0for j in row:if j == '1':acc += 1if acc == 0:continueline.append(acc)#print(line)res = 0for i in range(len(line)):if i + 1< len(line):res += line[i]*line[i+1]return res
这篇关于Leetcode 2125. Number of Laser Beams in a Bank [Python]的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!