Skip to content

Commit 0ef4a87

Browse files
authored
Added solution for 2855
1 parent d6baf8e commit 0ef4a87

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
impl Solution {
2+
// Iterate through the vector and count how many times the next number is lower than the current number. If it happens more than once, the vector can't be sorted with right shifting. If it happens exactly once, check at what index the next number is lower than current. Shifting to right has to happen from that index till the end. Also check if first number is higher than last number for edge cases
3+
pub fn minimum_right_shifts(nums: Vec<i32>) -> i32 {
4+
let mut counter = 0;
5+
let mut shifts = 0;
6+
let size = nums.len();
7+
for index in 0..(size - 1) {
8+
if nums[index] > nums[index + 1] {
9+
counter += 1;
10+
shifts = (size - (index + 1)) as i32;
11+
}
12+
}
13+
14+
// Check if last number is greater than first number since this will become relevant when shifting occurs
15+
if nums[size - 1] > nums[0] {
16+
counter += 1;
17+
// If this was the only place where shifting should have happened, then no shifting is needed, else this is the 2nd place that needs shifting which means vector can't be sorted
18+
if counter == 1 {
19+
shifts = 0;
20+
} else {
21+
shifts = (size - 1) as i32;
22+
}
23+
}
24+
if counter < 2 {
25+
return shifts;
26+
}
27+
return -1;
28+
}
29+
}

0 commit comments

Comments
 (0)