[Swift]LeetCode771. 宝石与石头 | 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:

  • S and J will consist of letters and have length at most 50.
  • The characters in J are distinct.


给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头。 S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石。

J 中的字母不重复,J 和 S中的所有字符都是字母。字母区分大小写,因此"a""A"是不同类型的石头。

示例 1:

输入: J = "aA", S = "aAAbbbb"
输出: 3

示例 2:

输入: J = "z", S = "ZZ"
输出: 0

注意:

  • S 和 J 最多含有50个字母。
  • J 中的字符不重复。


Runtime: 8 ms

Memory Usage: 19.3 MB

 1 class Solution {
 2     func numJewelsInStones(_ J: String, _ S: String) -> Int {
 3         var jewels = [Character : Int]()
 4         J.forEach { (c) in
 5             jewels[c] = 1
 6         }
 7
 8         return S.reduce(0, { result, c in
 9             if let _ = jewels[c] {
10                 return result + 1
11             }
12             return result
13         })
14     }
15 }


8ms

 1 class Solution {
 2     func numJewelsInStones(_ J: String, _ S: String) -> Int {
 3         var count: Int = 0
 4         for character in S {
 5             if J.contains(character) {
 6                 count += 1
 7             }
 8         }
 9         return count
10     }
11 }


12ms

1 class Solution {
2     func numJewelsInStones(_ J: String, _ S: String) -> Int {
3         return S.characters.filter{
4             J.characters.contains($0)
5         }.count
6     }
7 }


16ms

 1 class Solution {
 2     func numJewelsInStones(_ J: String, _ S: String) -> Int {
 3         var res = 0
 4         for x in J{
 5             for y in S{
 6                 if(y==x){
 7                     res+=1
 8                 }
 9             }
10         }
11         return res
12     }
13 }


20ms

 1 class Solution {
 2     func numJewelsInStones(_ J: String, _ S: String) -> Int {
 3         var matchArray: [Character] = []
 4         var stoneArray = Array(S)
 5
 6         for jewel in J {
 7             if stoneArray.contains(jewel) {
 8                 matchArray += stoneArray.filter { $0 == jewel }
 9             }
10         }
11
12         return matchArray.count
13     }
14 }


19064 kb

 1 class Solution {
 2     func numJewelsInStones(_ J: String, _ S: String) -> Int {
 3     var num = 0
 4     J.forEach { (Jcharacter) in
 5         S.forEach({ (Scharacter) in
 6             if Jcharacter == Scharacter {
 7                 num += 1
 8             }
 9         })
10     }
11
12     return num
13     }
14 }


48ms

 1 class Solution {
 2     func numJewelsInStones(_ J: String, _ S: String) -> Int {
 3         var map: [Character:Int?] = [:]
 4         for str in J {
 5             map[str] = 0
 6         }
 7         for str in S {
 8             if let value = map[str] {
 9                 map[str] = (value ?? 0) + 1
10             }
11         }
12         return map.values.reduce(0) {$0 + ($1 ?? 0)}
13     }
14 }

原文地址:https://www.cnblogs.com/strengthen/p/10536345.html

时间: 2024-08-30 18:00:40

[Swift]LeetCode771. 宝石与石头 | Jewels and Stones的相关文章

codechef Jewels and Stones 题解

Soma is a fashionable girl. She absolutely loves shiny stones that she can put on as jewellery accessories. She has been collecting stones since her childhood - now she has become really good with identifying which ones are fake and which ones are no

LeetCode - 宝石与石头 (No.771)

771 - 宝石与石头 date : Dec.31st, 2019 platform : windows problem description 给定字符串J?代表石头中宝石的类型,和字符串?S代表你拥有的石头.?S?中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石. J?中的字母不重复,J?和?S中的所有字符都是字母.字母区分大小写,因此"a"和"A"是不同类型的石头. 来源:力扣(LeetCode) 链接:https://leetcod

771. 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

LeetCode-771 Jewels and Stones Solution with Java

1. Description: Notes: 2. Examples:  3.Solutions: 1 public int numJewelsInStones(String J, String S) { 2 int num = 0; 3 for (int i = 0; i < S.length(); i++) { 4 if (J.contains(S.charAt(i) + "")) 5 num++; 6 } 7 return num; 8 } 原文地址:https://www

【leecode】宝石与石头

给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头. S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石. J 中的字母不重复,J 和 S中的所有字符都是字母.字母区分大小写,因此"a"和"A"是不同类型的石头. You're given strings J representing the types of stones that are jewels, and S representing the stones you

Leetcode #771. 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 Sis 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

771. 宝石与石头

给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头. S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石. J 中的字母不重复,J 和 S中的所有字符都是字母.字母区分大小写,因此"a"和"A"是不同类型的石头. 示例 1: 输入: J = "aA", S = "aAAbbbb" 输出: 3 示例 2: 输入: J = "z", S = "ZZ"

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 Sis a type of stone you have.  You want to know how many of the stones you have are also jewels. The letters in 

[LeetCode&amp;Python] Problem 771: 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 Sis 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