Hackerrank – Weather Observation Station 10
Problem Statement A description of the problem can be found on Hackerrank. Solution As Weather Observation Station 7, only the condition is opposite. I created solution in: SQL All solutions are also available on my GitHub. SQL
|
1 2 3 4 5 |
select distinct city from station where substr(lower(city), length(city), 1) not in ('a', 'e', 'i', 'o', 'u') order by city; |