LeetCode2828. Check if a String Is an Acronym of Words

文章目录

一、题目

Given an array of strings words and a string s, determine if s is an acronym of words.

The string s is considered an acronym of words if it can be formed by concatenating the first character of each string in words in order. For example, "ab" can be formed from ["apple", "banana"], but it can't be formed from ["bear", "aardvark"].

Return true if s is an acronym of words, and false otherwise.

Example 1:

Input: words = ["alice","bob","charlie"], s = "abc"

Output: true

Explanation: The first character in the words "alice", "bob", and "charlie" are 'a', 'b', and 'c', respectively. Hence, s = "abc" is the acronym.

Example 2:

Input: words = ["an","apple"], s = "a"

Output: false

Explanation: The first character in the words "an" and "apple" are 'a' and 'a', respectively.

The acronym formed by concatenating these characters is "aa".

Hence, s = "a" is not the acronym.

Example 3:

Input: words = ["never","gonna","give","up","on","you"], s = "ngguoy"

Output: true

Explanation: By concatenating the first character of the words in the array, we get the string "ngguoy".

Hence, s = "ngguoy" is the acronym.

Constraints:

1 <= words.length <= 100

1 <= words[i].length <= 10

1 <= s.length <= 100

words[i] and s consist of lowercase English letters.

二、题解

cpp 复制代码
class Solution {
public:
    bool isAcronym(vector<string>& words, string s) {
        string s1 = "";
        for(auto word:words){
            s1 += word[0];
        }
        return s1 == s;
    }
};
相关推荐
梦想的颜色3 分钟前
mongoTemplate + Java 增删改查基础介绍
数据结构·数据库·mysql
我头发多我先学20 分钟前
C++ 模板全解:从泛型编程初阶到特化、分离编译进阶
java·开发语言·c++
yu859395827 分钟前
MATLAB连续线性化模型预测控制(SL-MPC)
算法·机器学习·matlab
星星码️35 分钟前
C++选择题练习(一)
开发语言·c++
ytttr87339 分钟前
基于ACADO工具包的自主车道跟踪与避障MPC控制
算法
隔壁大炮43 分钟前
第一章_机器学习概述_03.机器学习_算法分类
算法·机器学习·分类
WolfGang0073211 小时前
代码随想录算法训练营 Day43 | 图论 part01
算法·深度优先
叶小鸡2 小时前
小鸡玩算法-力扣HOT100-堆
数据结构·算法·leetcode
小雅痞2 小时前
[Java][Leetcode simple] 28. 找出字符串中第一个匹配项的下标
java·开发语言·leetcode