leetle

Daily challenge for 2026-04-06

461. Filter Words by Vowel Count

Given a list of strings words and an integer k, return a new list containing only the words that have exactly k vowels (a, e, i, o, u, case-insensitive).

Example:
Input: words = ["apple", "bat", "car"], k = 2
Output: ["apple"]

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