Hacker rank Weather Observation Station 12
1 2 3 4 5 select distinct city from station where left(city,1) not in ('a','e','i','o','u') and right(city,1) not in ('a','e','i','o','u') cs
2021. 10. 21.
Hacker rank Weather Observation Station 11
1 2 3 4 5 select distinct city from station where left(city,1) not in ('a','e','i','o','u') or right(city,1) not in ('a','e','i','o','u') cs
2021. 10. 21.