Daily challenge for 2026-01-20
385. Count Words Ending with S
Given an array of strings words, return the number of strings that end with the character 's' (case-insensitive).
Example:Input: words = ["Dogs", "cat", "Buses"] Output: 2
Run this challenge interactively in Python or JavaScript when the app loads.