Skip to content

LC 0610 [E] Triangle Judgement

Code with Senpai edited this page May 18, 2022 · 1 revision
# * = x,y,z
SELECT *, IF(x+y>z and x+z>y and y+z>x, 'Yes', 'No') as triangle FROM triangle
Clone this wiki locally