作者smart0eddie (smart0eddie)
看板Marginalman
標題Re: [閒聊] 每日leetcode
時間Thu Aug 1 13:01:56 2024
2024-08-01
2678. Number of Senior Citizens
You are given a 0-indexed array of strings details. Each element of details
provides information about a given passenger compressed into a string of
length 15. The system is such that:
The first ten characters consist of the phone number of passengers.
The next character denotes the gender of the person.
The following two characters are used to indicate the age of the person.
The last two characters determine the seat allotted to that person.
Return the number of passengers who are strictly more than 60 years old.
靠北 八月了
終於有一題我不用抄解答的了
class Solution {
public:
int countSeniors(vector<string>& details) {
int count = 0;
for (auto s : details) {
char age1 = s[11];
char age2 = s[12];
if (age1 > '6') {
count++;
}
else if (age1 == '6' && age2 > '0') {
count++;
}
}
return count;
}
};
慢死 應該用 sub string 轉 int
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 73.173.211.221 (美國)
※ 文章網址: https://www.ptt.cc/bbs/Marginalman/M.1722488518.A.5D1.html
推 SAKIASHIZAWA: 我會把年齡轉成數字後一次判讀 08/01 13:03
→ SAKIASHIZAWA: 好像沒差多少速度 但你好醜 08/01 13:03
→ SAKIASHIZAWA: 對不起 08/01 13:03
推 Smallsh: 大師 08/01 13:03
→ dont: 大師 08/01 20:00