leetle

Daily challenge for 2026-05-19

504. Count Distinct Vowel Words

Given a list of strings words, return the number of words that contain at least one of every vowel ('a', 'e', 'i', 'o', 'u'). The vowels can appear in any order and multiple times.

Example:
Input: words = ["aeeiouu", "hello", "uoiea", "apple"]
Output: 2
Explanation: "aeeiouu" and "uoiea" contain all 5 vowels.

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