mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
21 lines
479 B
C++
21 lines
479 B
C++
#include <algorithm>
|
|
#include <set>
|
|
|
|
class Solution {
|
|
public:
|
|
int maxWidthOfVerticalArea(const std::vector<std::vector<int>> &points) {
|
|
std::set<int> seen;
|
|
for (const auto &point : points) {
|
|
seen.insert(point[0]);
|
|
}
|
|
|
|
int last = *seen.begin();
|
|
int max_width = 0;
|
|
for (const auto x : seen) {
|
|
max_width = std::max(max_width, x - last);
|
|
last = x;
|
|
}
|
|
|
|
return max_width;
|
|
}
|
|
};
|