Daily challenge for 2026-02-03
399. Unique Sum of First Occurrences
Given an array of integers nums, return the sum of all numbers that appear exactly once in the array. Use a hash map to count frequencies.
Example:Input: [1,2,3,2]Output: 4
Run this challenge interactively in Python or JavaScript when the app loads.