Hackerrank – Weather Observation Station 9
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 |
select distinct city from station where lower(substr(city, 1, 1)) not in ('a', 'e', 'i', 'o', 'u') order by city asc; |