-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumberOfSegmentsInString.php
More file actions
46 lines (44 loc) · 1.06 KB
/
Copy pathNumberOfSegmentsInString.php
File metadata and controls
46 lines (44 loc) · 1.06 KB
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
<?php
namespace App;
/**
* Number of Segments in a String
*
* Given a string s, return the number of segments in the string. A segment is defined to be a contiguous sequence
* of non-space characters.
* Example 1:
* Input: s = "Hello, my name is John"
* Output: 5
* Explanation: The five segments are ["Hello,", "my", "name", "is", "John"]
*
* Example 2:
* Input: s = "Hello"
* Output: 1
*
* https://leetcode.com/problems/number-of-segments-in-a-string
*/
class NumberOfSegmentsInString
{
/**
* @param string $str
* @return int
*/
public function countSegments(string $str): int
{
$index = 0;
$numWords = 0;
$letterFound = false;
while ($index < strlen($str)) {
if ($str[$index] === ' ' && $letterFound) {
$numWords++;
$letterFound = false;
} elseif ($str[$index] !== ' ') {
$letterFound = true;
}
$index++;
}
if ($letterFound) {
$numWords++;
}
return $numWords;
}
}