【LeetCode】每日一题 2023_12_20 判别首字母缩略词(简单题)

发布时间:2023年12月20日

刷题前唠嗑

LeetCode?启动!!!

困难题我唯唯诺诺,简单题我重拳出击

题目:判别首字母缩略词

题目链接:2828. 判别首字母缩略词

题目描述

代码与解题思路

func isAcronym(words []string, s string) bool {
    if len(words) != len(s) {
        return false
    }
    for i := 0; i < len(words); i++ {
        if words[i][0] != s[i] {
            return false
        }
    }
    return true
}

结语

最简单的一集

文章来源:https://blog.csdn.net/Locky136/article/details/135099286
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。