Daily challenge for 2025-07-02
183. Remove Vowels from String
Write a function solve that takes a string and returns a new string with all vowels (a, e, i, o, u) removed. Both uppercase and lowercase vowels should be removed.
Example:Input: "hello world"Output: "hll wrld"
Run this challenge interactively in Python or JavaScript when the app loads.