LeetCode--610. 判断三角形

    科技2025-04-20  6

    select *, case when x+y>z and x+z>y and y+z>x then 'Yes' else 'No' end as triangle from triangle;
    Processed: 0.016, SQL: 8