Weather Observation Station 12

  • + 23 comments

    Here is Oracle solution from my HackerrankPractice repository:

    SELECT DISTINCT City
    FROM Station
    WHERE REGEXP_LIKE(City, '^[^AEIOU].*[^aeiou]$');
    

    Feel free to ask if you have any questions :)