Skip to content

Commit

Permalink
Time: 278 ms (90.86%) | Memory: 0B (100.00%) - LeetSync
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimple-01 committed Jun 13, 2024
1 parent 892c560 commit 0246fc6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions 610-triangle-judgement/triangle-judgement.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Write your MySQL query statement below
select x,y,z,
case
when x+y > z and y+z > x and x+z> y
then 'Yes'
else 'No'
end as triangle
from Triangle;

0 comments on commit 0246fc6

Please sign in to comment.