1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cpp/number-of-laser-beams-in-a-bank.cpp

22 lines
493 B
C++
Raw Normal View History

#include <algorithm>
#include <string>
#include <vector>
class Solution {
public:
int numberOfBeams(const std::vector<std::string> &bank) {
int beams = 0;
int last_row = 0;
for (const auto &row : bank) {
if (auto current_row = std::count(row.begin(), row.end(), '1');
current_row != 0) {
beams += last_row * current_row;
last_row = current_row;
}
}
return beams;
}
};