/
githubmirror
/
LeetCodeAnimation
Обзор
Документация
Войти
/
githubmirror
/
LeetCodeAnimation
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
problems/0771-Jewels-Stones/Code/1.java
13 строк
338 B
吴至波
docs: organize assets and add animation previews
10 июн 2026, 10:57
10 июн 2026, 10:57
3711846
Код
Авторство
О чём код?
class Solution { public int numJewelsInStones(String J, String S) { Set<Character> Jset = new HashSet(); for (char j: J.toCharArray()) Jset.add(j); int ans = 0; for (char s: S.toCharArray()) if (Jset.contains(s)) ans++; return ans; } }