2274. 不含特殊楼层的最大连续楼层数
2274. 不含特殊楼层的最大连续楼层数
题目链接:2274. 不含特殊楼层的最大连续楼层数
代码如下:
class Solution {
public:
int maxConsecutive(int bottom, int top, vector<int>& special) {
ranges::sort(special);
int res = max(special[0] - bottom, top - special[special.size() - 1]);
for (int i = 1;i < special.size();i++) {
res = max(res, special[i] - special[i - 1] - 1);
}
return res;
}
};