Skip to content

Commit 1f8afe0

Browse files
committed
solved: 434. Number of Segments in a String
Signed-off-by: rajput-hemant <[email protected]>
1 parent 9de6e09 commit 1f8afe0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
impl Solution {
2+
pub fn count_segments(s: String) -> i32 {
3+
let (mut count, mut is_space) = (0, true);
4+
5+
for c in s.chars() {
6+
if c == ' ' {
7+
is_space = true;
8+
} else if is_space {
9+
is_space = false;
10+
count += 1;
11+
}
12+
}
13+
14+
count
15+
}
16+
}

0 commit comments

Comments
 (0)