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

文章目录

  • 刷题前唠嗑
  • 题目:判别首字母缩略词
    • 题目描述
    • 代码与解题思路
  • 结语

刷题前唠嗑

【LeetCode】每日一题 2023_12_20 判别首字母缩略词(简单题)_第1张图片

LeetCode?启动!!!

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

题目:判别首字母缩略词

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

题目描述

【LeetCode】每日一题 2023_12_20 判别首字母缩略词(简单题)_第2张图片

代码与解题思路

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
}

结语

最简单的一集

你可能感兴趣的:(LeetCode,每日一题,leetcode,算法,职场和发展)