Robbie Hatley's Solutions, in Perl, for The Weekly Challenge #319 (“Word Count” and “Minimum Common”)
For those not familiar with "The Weekly Challenge", it is a weekly programming puzzle with two parts, with a new pair of taks each Monday. You can find it here: The Weekly Challenge The Weekly Challenge for the week of 2025-04-28 through 2025-05-04 is #319 The tasks for challenge #319 are as follows: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Task 319-1: Word Count Submitted by: Mohammad Sajid Anwar You are given a list of words containing alphabetic characters only. Write a script to return the count of words either starting with a vowel or ending with a vowel. Example #1: Input: @list = ("unicode", "xml", "raku", "perl") Output: 2 The words are "unicode" and "raku". Example #2: Input: @list = ("the", "weekly", "challenge") Output: 2 Example #3: Input: @list = ("perl", "python", "postgres") Output: 0 I'll interpret ...