Skip to content

Commit

Permalink
Time: 279 ms (90.75%), Space: 0B (100.00%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
joseantoniochacon committed Jun 13, 2024
1 parent 219658d commit b1d0aeb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 0610-triangle-judgement/0610-triangle-judgement.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Write your MySQL query statement below
SELECT *, IF(x+y>z AND y+z>x AND z+x >y, 'Yes', 'No') AS triangle FROM Triangle;

0 comments on commit b1d0aeb

Please sign in to comment.