摘要: 792. 匹配子序列的单词数 // 时间复杂度 n + m * k public int numMatchingSubseq(String s, String[] words) { List<List<Pair>> list = new ArrayList<>(); for (int i = 0; 阅读全文
posted @ 2022-11-17 23:39 Eiffelzero 阅读(28) 评论(0) 推荐(0)