摘要: 第一题 1880. 检查某单词是否等于两单词之和 题目链接:1880. 检查某单词是否等于两单词之和 逐位计算单词之和即可 class Solution { public: int count(string s) { int ans = 0; for(const auto& c: s) { ans 阅读全文
posted @ 2021-05-31 11:45 machine_gun_lin 阅读(47) 评论(0) 推荐(0)