题目
解题思路
- 遍历整个循环,根据当前设备的电池百分比来修改后续设备的电池量,并统计小号设备的数量。
代码展示
class Solution {
public int countTestedDevices(int[] batteryPercentages) {
int n = batteryPercentages.length;
int ans = 0;
for(int i = 0; i < n; i++){
if(batteryPercentages[i] > 0){
ans++;
for(int j = i + 1; j < n; j++){
if(batteryPercentages[j] > 0){
batteryPercentages[j]--;
}
}
}
}
return ans;
}
}