Daily challenge for 2026-02-19
415. Filter Odd Length Strings
Given a list of strings words, return a new list containing only the strings that have an odd number of characters. The order of the strings should be preserved.
Example:Input: words = ["apple", "pie", "kiwi"] Output: ["apple", "pie"]
Run this challenge interactively in Python or JavaScript when the app loads.