Write a function that takes two arrays of strings and counts how many strings start with a vowel?
Login to Submit
Takes two arrays of strings and counts how many strings start with a vowel (a, e, i, o, u). input: ["apple", "ball"], ["orange", "tree"] output: 2 // "apple", "orange" input: ["sky", "moon"], ["dog", "cat"] output: 0 // none start with vowel