We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
with TN as(Select Min(LAT_N) as a,Max(LAT_N) as b,Min(Long_W) as c,Max(Long_W) as d from Station)
select round(sqrt(power((a-b),2)+power((c-d),2)),4) from TN
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 19
You are viewing a single comment's thread. Return to all comments →
with TN as(Select Min(LAT_N) as a,Max(LAT_N) as b,Min(Long_W) as c,Max(Long_W) as d from Station) select round(sqrt(power((a-b),2)+power((c-d),2)),4) from TN