Weather Observation Station 8 HackerRank Solution SQL

Query the list of CITY names from STATION which have vowels (i.e., aeio, and u) as both their first and last characters. Your result cannot contain duplicates.

Input Format

The STATION table is described as follows:

where LAT_N is the northern latitude and LONG_W is the western longitude.

Weather Observation Station 8 HackerRank Solution SQL

select distinct CITY from STATION where CITY RLIKE '^[AEIOU]' and CITY RLIKE '[aeiou]$'

Attempt : https://www.hackerrank.com/challenges/weather-observation-station-8

 

Leave a Comment