Problem Description
You are given a 0-indexed integer array nums
of size 3
which can form the sides of a triangle. Return a string representing the type of triangle that can be formed or "none" if it cannot form a triangle.
Key Insights
- A triangle is equilateral if all sides are equal.
- A triangle is isosceles if exactly two sides are equal.
- A triangle is scalene if all sides are of different lengths.
- To determine if three sides can form a triangle, the sum of the lengths of any two sides must be greater than the length of the third side.
Space and Time Complexity
Time Complexity: O(1)
Space Complexity: O(1)
Solution
To solve this problem, we will first check if the three sides can form a triangle using the triangle inequality theorem. If they can, we will then classify the triangle based on the lengths of its sides. We will use a simple comparison of the side lengths to determine the type: equilateral, isosceles, or scalene.