LeetCode-biweekly-contest-48
耽误了比赛,赛后补题。
1796. Second Largest Digit in a String
签到题。统计所有的数字,再从大到小找第二大的。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Solution {
public:
int secondHighest(string s) {
vector cnt(10, 0);
for (char c : s) {
if(isdigit(c)) {