-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecondLargestDigitInString.php
More file actions
52 lines (50 loc) · 1.36 KB
/
Copy pathSecondLargestDigitInString.php
File metadata and controls
52 lines (50 loc) · 1.36 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
47
48
49
50
51
52
<?php
namespace App;
/**
* Second-Largest Digit in a String
*
* Given an alphanumeric string s, return the second-largest numerical digit that appears in s, or -1 if it does not
* exist. An alphanumeric string is a string consisting of lowercase English letters and digits.
*
* Example 1:
* Input: s = "dfa12321afd"
* Output: 2
* Explanation: The digits that appear in s are [1, 2, 3]. The second largest digit is 2.
*
* Example 2:
* Input: s = "abc1111"
* Output: -1
* Explanation: The digits that appear in s are [1]. There is no second largest digit.
*
* https://leetcode.com/problems/second-largest-digit-in-a-string
*/
class SecondLargestDigitInString
{
/**
* @param string $str
* @return int
*/
public function secondHighest(string $str): int
{
$digits = [];
$max = PHP_INT_MIN;
for ($i = 0, $iMax = strlen($str); $i < $iMax; $i++) {
if (is_numeric($str[$i])) {
$digits[] = (int) $str[$i];
if ($max < $str[$i]) {
$max = $str[$i];
}
}
}
if (count($digits) < 2) {
return -1;
}
$secondMax = -1;
foreach ($digits as $digit) {
if ($digit > $secondMax && $digit < $max) {
$secondMax = $digit;
}
}
return $secondMax;
}
}