Question Bank
JavaScript Character Occurrence Count: Three Approaches Quiz
Difficulty: Hard
Count how often each unique character from a needle string appears in a haystack, three ways (Set + per-char count, dict tally, regex match per char), plus two companions on case folding and a single-pass tally.
