mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 15:31:43 +08:00
update
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
<p>Table: <code>Triangle</code></p>
|
||||
|
||||
<pre>
|
||||
+-------------+------+
|
||||
| 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.
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Report for every three line segments whether they can form a triangle.</p>
|
||||
|
||||
<p>Return the result table in <strong>any order</strong>.</p>
|
||||
|
||||
<p>The result format is in the following example.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong>
|
||||
Triangle table:
|
||||
+----+----+----+
|
||||
| x | y | z |
|
||||
+----+----+----+
|
||||
| 13 | 15 | 30 |
|
||||
| 10 | 20 | 15 |
|
||||
+----+----+----+
|
||||
<strong>Output:</strong>
|
||||
+----+----+----+----------+
|
||||
| x | y | z | triangle |
|
||||
+----+----+----+----------+
|
||||
| 13 | 15 | 30 | No |
|
||||
| 10 | 20 | 15 | Yes |
|
||||
+----+----+----+----------+
|
||||
</pre>
|
Reference in New Issue
Block a user