aboutsummaryrefslogtreecommitdiffstats
path: root/2125/main.py
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-01-03 08:20:27 +0000
committerterminaldweller <devi@terminaldweller.com>2024-01-03 08:20:27 +0000
commitd0a9df1754e2c9182f5b3a3a30682b37014e6206 (patch)
treec1059f5c15f76943661c85dbd17ab4def4f75c99 /2125/main.py
parent2704 (diff)
downloadleetcode-d0a9df1754e2c9182f5b3a3a30682b37014e6206.tar.gz
leetcode-d0a9df1754e2c9182f5b3a3a30682b37014e6206.zip
2125,2620,2667
Diffstat (limited to '2125/main.py')
-rwxr-xr-x2125/main.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/2125/main.py b/2125/main.py
new file mode 100755
index 0000000..da45c29
--- /dev/null
+++ b/2125/main.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+
+import typing
+
+
+class Solution:
+ def numberOfBeams(self, bank: typing.List[str]) -> int:
+ row_count = 0
+ result = 0
+ for row in bank:
+ count = row.count("1")
+ if count != 0:
+ result += row_count * count
+ row_count = row.count("1")
+
+ return result
+
+
+def main():
+ solution = Solution()
+ print(solution.numberOfBeams(["011001", "000000", "010100", "00100"]))
+ print(solution.numberOfBeams(["000", "111", "000"]))
+
+
+if __name__ == "__main__":
+ main()