Daily challenge for 2025-03-21
80. Find the First Non-Repeating Character
Write a function solve that finds the first non-repeating character in a string. Return the character, or an empty string if no such character exists.
Example:Input: "aabbcdd"Output: "c"
Run this challenge interactively in Python or JavaScript when the app loads.