-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplus_one.rs
67 lines (60 loc) · 1.69 KB
/
plus_one.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/// You are given a large integer represented as an integer array `digits`,
/// where each `digits[i]` is the `ith` digit of the integer. The digits are
/// ordered from most significant to least significant in left-to-right order.
/// The large integer does not contain any leading `0`'s.
///
/// Increment the large integer by one and return the resulting array of
/// digits.
struct Solution;
impl Solution {
pub fn plus_one(digits: Vec<i32>) -> Vec<i32> {
let n = digits.len();
let mut result = Vec::new();
let mut carry = false;
let mut digit;
for i in 0..n {
digit = digits[n - i - 1];
if i == 0 || carry {
digit += 1;
carry = false;
}
if digit > 9 {
digit -= 10;
carry = true;
}
result.push(digit);
}
if carry {
result.push(1);
}
result.into_iter().rev().collect()
}
}
#[cfg(test)]
mod tests {
use super::Solution;
#[test]
fn example_1() {
let digits = vec![1, 2, 3];
let result = Solution::plus_one(digits);
assert_eq!(result, vec![1, 2, 4]);
}
#[test]
fn example_2() {
let digits = vec![4, 3, 2, 1];
let result = Solution::plus_one(digits);
assert_eq!(result, vec![4, 3, 2, 2]);
}
#[test]
fn example_3() {
let digits = vec![9];
let result = Solution::plus_one(digits);
assert_eq!(result, vec![1, 0]);
}
#[test]
fn real_world() {
let digits = vec![8, 9, 9, 9];
let result = Solution::plus_one(digits);
assert_eq!(result, vec![9, 0, 0, 0]);
}
}