摘要: 第一题 题解:模拟题 class Solution { public: int countVowelSubstrings(string w) { int n = w.length(); int i = 0, res = 0; string p = "aeiou"; while(i < n){ if( 阅读全文
posted @ 2021-11-07 20:54 lzyer 阅读(31) 评论(0) 推荐(0) 编辑