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.
CAN ANYONE TELL ME WHERE IM WRONG:
select
case
when ((a+b > c) OR (a+c > b) OR (b+c > a)) then (
select CASE
when (a=b AND b=c) then 'Equilateral'
when ((a=b AND a!=c) OR (b=c AND a!=c) OR (a=c AND b!=c)) then 'Isosceles'
when (a!=b AND a!=c AND b!=c) then 'Scalene'
end
)
else 'Not A Triangle'
end
from TRIANGLES;
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Type of Triangle
You are viewing a single comment's thread. Return to all comments →
CAN ANYONE TELL ME WHERE IM WRONG: select case when ((a+b > c) OR (a+c > b) OR (b+c > a)) then ( select CASE when (a=b AND b=c) then 'Equilateral' when ((a=b AND a!=c) OR (b=c AND a!=c) OR (a=c AND b!=c)) then 'Isosceles' when (a!=b AND a!=c AND b!=c) then 'Scalene' end ) else 'Not A Triangle'
end from TRIANGLES;