#1826
Easy Algorithms Faulty sensor
Array Two Pointers
50.5% acceptance
Mar 31, 2026
72
85
An experiment is being conducted in a lab. To ensure accuracy, there are two sensors collecting data simultaneously. You are given two arrays sensor1 and sensor2, where sensor1[i] and sensor2[i] are the ith data points collected by the two sensors.
However, this type of sensor has a chance of being defective, which causes exactly one data point to be dropped. After the data is dropped, all the data points to the right of the dropped data are shifted one place to the left, and the last data point is replaced with some random value. It is guaranteed that this random value will not be equal to the dropped value.
For example, if the correct data is [1,2,3,4,5] and 3 is dropped, the sensor could return [1,2,4,5,7] (the last position can be any value, not just 7).
We know that there is a defect in at most one of the sensors. Return the sensor number (1 or 2) with the defect. If there is no defect in either sensor or if it is impossible to determine the defective sensor, return -1.
Solution
Rust
Time O(n)
Space O(1)
impl Solution {
pub fn bad_sensor(sensor1: Vec<i32>, sensor2: Vec<i32>) -> i32 {
let n = sensor1.len();
let mut i = 0;
while i < n && sensor1[i] == sensor2[i] {
i += 1;
}
if i >= n - 1 {
return -1;
}
let s1_defective = sensor2[i + 1..] == sensor1[i..n - 1];
let s2_defective = sensor1[i + 1..] == sensor2[i..n - 1];
if s1_defective && s2_defective {
-1
} else if s1_defective {
1
} else if s2_defective {
2
} else {
-1
}
}
}