forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn0058_length_of_last_word.rs
52 lines (47 loc) · 1.24 KB
/
n0058_length_of_last_word.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
/**
* [58] Length of Last Word
*
* Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
*
* If the last word does not exist, return 0.
*
* Note: A word is defined as a character sequence consists of non-space characters only.
*
* Example:
*
* Input: "Hello World"
* Output: 5
*
*
*/
pub struct Solution {}
// submission codes start here
impl Solution {
pub fn length_of_last_word(s: String) -> i32 {
let seq: Vec<char> = s.chars().rev().collect();
let mut result = 0;
let mut find = false;
for ch in seq {
if ch == ' ' && find {
break;
}
if ch != ' ' {
find = true;
result += 1;
}
}
result
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_58() {
assert_eq!(Solution::length_of_last_word("Hello World".to_owned()), 5);
assert_eq!(Solution::length_of_last_word(" ".to_owned()), 0);
assert_eq!(Solution::length_of_last_word("".to_owned()), 0);
assert_eq!(Solution::length_of_last_word(" rrrrr ".to_owned()), 5);
}
}