-
Notifications
You must be signed in to change notification settings - Fork 0
/
1796.字符串中第二大的数字.go
74 lines (70 loc) · 1.3 KB
/
1796.字符串中第二大的数字.go
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* @lc app=leetcode.cn id=1796 lang=golang
*
* [1796] 字符串中第二大的数字
*
* https://leetcode-cn.com/problems/second-largest-digit-in-a-string/description/
*
* algorithms
* Easy (48.85%)
* Likes: 9
* Dislikes: 0
* Total Accepted: 9.2K
* Total Submissions: 18.9K
* Testcase Example: '"dfa12321afd"'
*
* 给你一个混合字符串 s ,请你返回 s 中 第二大 的数字,如果不存在第二大的数字,请你返回 -1 。
*
* 混合字符串 由小写英文字母和数字组成。
*
*
*
* 示例 1:
*
*
* 输入:s = "dfa12321afd"
* 输出:2
* 解释:出现在 s 中的数字包括 [1, 2, 3] 。第二大的数字是 2 。
*
*
* 示例 2:
*
*
* 输入:s = "abc1111"
* 输出:-1
* 解释:出现在 s 中的数字只包含 [1] 。没有第二大的数字。
*
*
*
*
* 提示:
*
*
* 1
* s 只包含小写英文字母和(或)数字。
*
*
*/
// @lc code=start
func secondHighest(s string) int {
// 0-9的ascII对应48-57
max1 := -1
max2 := -1
for i := range s {
c := s[i]
if c >= byte('0') && c <= byte('9') {
num := int(c) - 48
if num == max1 || num == max2 {
continue
}
if num > max1 {
max2 = max1
max1 = num
} else if num > max2 {
max2 = num
}
}
}
return max2
}
// @lc code=end