Skip to content

Commit 62f35a6

Browse files
authored
Added solution for 2270
1 parent 9ba9795 commit 62f35a6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
impl Solution {
2+
// Calculate the total of all nums (remember to use i64 for storing total as i32 range won't be enough). This is now right total. Then loop through nums, subtracting each number from right total and adding it to left total. Count the number of times left total is higher than or equal to right total while looping and then return that count.
3+
pub fn ways_to_split_array(nums: Vec<i32>) -> i32 {
4+
let mut left_total: i64 = 0;
5+
let mut right_total: i64 = 0;
6+
let len = nums.len();
7+
let mut valid_splits = 0;
8+
9+
for num in &nums {
10+
right_total += *num as i64;
11+
}
12+
13+
for num in &nums[0..(len - 1)] {
14+
left_total += *num as i64;
15+
right_total -= *num as i64;
16+
if left_total >= right_total {
17+
valid_splits += 1;
18+
}
19+
}
20+
21+
return valid_splits;
22+
}
23+
}

0 commit comments

Comments
 (0)