Write a function to remove vowels from the given string?
Login to Submit
remove a, e, i, o, u from given string Input: "cat" Output: "ct" Input: "book" Output: "bk" Input: "computer" Output: "cmptr"