Skip to content

Commit a4bdf7f

Browse files
authored
Added solution for 2526
1 parent 8cd9fd1 commit a4bdf7f

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
struct DataStream {
2+
integers: Vec<i32>,
3+
value: i32,
4+
k: usize
5+
}
6+
7+
8+
/**
9+
* `&self` means the method takes an immutable reference.
10+
* If you need a mutable reference, change it to `&mut self` instead.
11+
*/
12+
impl DataStream {
13+
// Create a struct with a vector for storing the stream of integers and other properties for storing value and k
14+
fn new(value: i32, k: i32) -> Self {
15+
return DataStream {
16+
integers: Vec::new(),
17+
value: value,
18+
k: k as usize
19+
}
20+
}
21+
22+
// Add num to the vector of stream of integers. If vector size is smaller than k, return false. Run a loop to check the integers of last k integers in the stream of integers. If any of them is not 'value', return false. Else return true which would mean all integers in the loop were same as 'value'.
23+
fn consec(&mut self, num: i32) -> bool {
24+
self.integers.push(num);
25+
if self.integers.len() < self.k {
26+
return false;
27+
}
28+
29+
for i in (self.integers.len() - self.k)..self.integers.len() {
30+
if self.integers[i] != self.value {
31+
return false;
32+
}
33+
}
34+
return true;
35+
}
36+
}
37+
38+
/**
39+
* Your DataStream object will be instantiated and called as such:
40+
* let obj = DataStream::new(value, k);
41+
* let ret_1: bool = obj.consec(num);
42+
*/

0 commit comments

Comments
 (0)