771. Jewels and Stones

复制代码
package LeetCode_771

/**
 * 771. Jewels and Stones
 * https://leetcode.com/problems/jewels-and-stones/
 * You're given strings J representing the types of stones that are jewels, and S representing the stones you have.
 * Each character in S is a type of stone you have.
 * You want to know how many of the stones you have are also jewels.
The letters in J are guaranteed distinct, and all characters in J and S are letters.
Letters are case sensitive,so "a" is considered a different type of stone from "A".

Example 1:
Input: J = "aA", S = "aAAbbbb"
Output: 3

Example 2:
Input: J = "z", S = "ZZ"
Output: 0

Note:
1. S and J will consist of letters and have length at most 50.
2. The characters in J are distinct.
 * */

class Solution {
    /*
    * solution: array, calculate how many character of J in S, Time:O(j+s), Space:O(1)
    * */
    fun numJewelsInStones(J: String, S: String): Int {
        var count = 0
        //because case sensitive
        val mapOfS = IntArray(128)
        for (c in S.toCharArray()) {
            //calculate count of char in S
            mapOfS[c.toInt()]++
        }
        for (c in J) {
            //get the count from S
            count += mapOfS[c.toInt()]
        }
        return count
    }
}
复制代码

 

posted @   johnny_zhao  阅读(55)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示