leetle

Daily challenge for 2025-12-20

354. Count Unique String Occurrences

Given an array of strings words, return the total count of strings that appear exactly once in the array. Use hashing/sets for efficient counting.

Example:
Input: ["apple","banana","apple","orange","banana","grape"]
Output: 2

Run this challenge interactively in Python or JavaScript when the app loads.