Hackerrank – Weather Observation Station 8
Popis problému Celý popis zadania sa nacháza – Hackerrank. Riešenie Vytvoril som riešenie v týchto programovacích jazykoch: SQL Všetky riešenia sú dostupné aj na mojom GitHub profile. SQL
|
1 2 3 4 5 6 7 |
select distinct city from station where substr(lower(city), 1, 1) in ('a', 'e', 'i', 'o', 'u') AND substr(lower(city), length(city), 1) in ('a', 'e', 'i', 'o', 'u') order by city; |