摘要: 1684. 统计一致字符串的数目 简单模拟 class Solution { public: int countConsistentStrings(string allowed, vector<string>& words) { int n = words.size(),num = 0; int h 阅读全文
posted @ 2020-12-18 16:31 DWVictor 阅读(77) 评论(0) 推荐(0)