Leetcode 434. Number of Segments in a String (Easy) (cpp)

来源:互联网 发布:fifaol3vs数据库 编辑:程序博客网 时间:2024/05/08 18:23

Leetcode 434. Number of Segments in a String (Easy) (cpp)

Tag: String

Difficulty: Easy


/*434. Number of Segments in a String (Easy)Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters.Please note that the string does not contain any non-printable characters.Example:Input: "Hello, my name is John"Output: 5*/class Solution {public:int countSegments(string s) {int res = 0;for (int i = 0; i < s.size(); i++) {if (s[i] != ' ' && (i + 1 == s.size() || s[i + 1] == ' ')) {res++;}}return res;}};


0 0
原创粉丝点击