2023每日刷题(五十六)
Leetcode—2960.统计已测试设备
实现代码
int countTestedDevices(int* batteryPercentages, int batteryPercentagesSize) {
int cnt = 0;
int ans = 0;
for(int i = 0; i < batteryPercentagesSize; i++) {
int t = batteryPercentages[i] - cnt;
if(t > 0) {
ans++;
cnt++;
}
}
return ans;
}
运行结果
2024.5.10重温一遍
实现代码
class Solution {
public:
int countTestedDevices(vector<int>& batteryPercentages) {
int ans = 0;
for(int i = 0; i < batteryPercentages.size(); i++) {
if(batteryPercentages[i] - ans > 0) {
ans++;
}
}
return ans;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!