Displaying 1 result from an estimated 1 matches for "scalen".
Did you mean:
scale
2012 Sep 21
3
(koans) another problem (syntax error)
...llo,
I now trying to solve this one :
# Triangle Project Code.
# Triangle analyzes the lengths of the sides of a triangle
# (represented by a, b and c) and returns the type of triangle.
#
# It returns:
# :equilateral if all sides are equal
# :isosceles if exactly 2 sides are equal
# :scalene if no sides are equal
#
# The tests for this method can be found in
# about_triangle_project.rb
# and
# about_triangle_project_2.rb
#
def triangle(a, b, c)
if ((a == b) and (b == c))
return :equilateral
if (((a == b) and (b != c)) or ((a != b) and (b == c)))
return :isosc...