From 219658d65ee5fedb59012781f57c9cb5ec01e0d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Chac=C3=B3n=20Guti=C3=A9rrez?= <138903866+joseantoniochacon@users.noreply.github.com> Date: Wed, 12 Jun 2024 23:12:11 -0600 Subject: [PATCH] Create README - LeetHub --- 0610-triangle-judgement/README.md | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 0610-triangle-judgement/README.md diff --git a/0610-triangle-judgement/README.md b/0610-triangle-judgement/README.md new file mode 100644 index 0000000..bc9e639 --- /dev/null +++ b/0610-triangle-judgement/README.md @@ -0,0 +1,41 @@ +

610. Triangle Judgement

Easy


SQL Schema

Table: Triangle

+ +
+-------------+------+
+| Column Name | Type |
++-------------+------+
+| x           | int  |
+| y           | int  |
+| z           | int  |
++-------------+------+
+In SQL, (x, y, z) is the primary key column for this table.
+Each row of this table contains the lengths of three line segments.
+
+ +

 

+ +

Report for every three line segments whether they can form a triangle.

+ +

Return the result table in any order.

+ +

The result format is in the following example.

+ +

 

+

Example 1:

+ +
Input: 
+Triangle table:
++----+----+----+
+| x  | y  | z  |
++----+----+----+
+| 13 | 15 | 30 |
+| 10 | 20 | 15 |
++----+----+----+
+Output: 
++----+----+----+----------+
+| x  | y  | z  | triangle |
++----+----+----+----------+
+| 13 | 15 | 30 | No       |
+| 10 | 20 | 15 | Yes      |
++----+----+----+----------+
+
+
\ No newline at end of file