leetle

Daily challenge for 2026-03-21

445. Find the Single Unique Word

Given an array of strings words where every word appears exactly twice except for one word which appears only once, find and return that unique word.

Example:
Input: words = ["apple", "banana", "apple"] Output: "banana"

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