当前位置: 首页 > article >正文

LeetCode 2185. Counting Words With a Given Prefix

🔗 https://leetcode.com/problems/counting-words-with-a-given-prefix

题目

  • 给一个字符串数组,返回其中前缀为 pref 的个数

思路

  • 模拟

代码

class Solution {
public:
    int prefixCount(vector<string>& words, string pref) {
        int count = 0;
        for (int i = 0; i < words.size(); i++) {
            bool mark = true;
            for (int j = 0; j < pref.size(); j++) {
                if (pref[j] != words[i][j]) {
                    mark = false;
                    break;
                }
            }
            if (mark) count++;
        }
        return count;
    }
};

http://www.kler.cn/a/487530.html

相关文章:

  • fastGpt 本地运行 mongo, 要加 directConnection=true 参数
  • 【LeetCode Hot100 贪心算法】 买卖股票的最佳时机、跳跃游戏、划分字母区间
  • 【CSS】设置滚动条样式
  • 数据库中锁与ETL的故障排除和性能优化
  • thinkphp6.0常用设计模式实例
  • _decl_class_registry 与 metadata.sorted_tables的区别
  • HTTP/HTTPS ②-Cookie || Session || HTTP报头
  • Python机器学习笔记(十八、交互特征与多项式特征)
  • 2025新年源码免费送
  • 【第04阶段-机器学习深度学习篇-1-深度学习基础-深度学习介绍】
  • Angular 最新版本和 Vue 对比完整指南
  • 【C语言】_函数指针变量
  • mac 窗口工具Teleport和Rectangle
  • 微信小程序——创建滑动颜色条
  • thinkphp6.0常用设计模式实例
  • 基于滑动窗口的限流方案
  • cv2.imwrite保存的图像是全黑的
  • React PureComponent使用场景
  • 基于SpringBoot的时间管理系统设计与实现
  • Spring Boot + MyBatis Plus 存储 JSON 或 List 列表全攻略
  • matlab离线安装硬件支持包
  • WPF连接USB相机,拍照,视频 示例
  • 《Spring Framework实战》4:Spring Framework 文档
  • Qt仿音乐播放器:媒体类
  • 降噪去噪学习流程和算法分类总结
  • 6 分布式限流框架