Solution 1 - Hash Set Lookup
Convert the jewels string into a set for O(1) lookups, then iterate through each character in stones and count how many are in the jewels set.
Solution 2 - One-Liner with sum()
Use a generator expression with sum() to count stones that appear in the jewels set. Same logic as Solution 1, but written more concisely.