I have been working through Ruby Koans and made it to about_triangle_project.rb in which you are required to write the code for a method, triangle.
Code for these items are found here:
https://github.com/edgecase/ruby_koans/blob/master/koans/about_triangle_project.rb
https://github.com/edgecase/ruby_koans/blob/master/koans/triangle.rb
In triangle.rb, I created the following method:
def triangle(a, b, c)
if ((a == b) && (a == c) && (b == c))
return :equilateral
elsif ((a == b) || (a == c) || (b == c))
return :isosceles
else
return :scalene
end
end
I know from reading Chris Pine's "Learn to Program" there is always more than one way to do things. Although the above code works, I can't help but think there is a more elegant way of doing this. Would anyone out there be willing to offer their thoughts on how they might make such a method more efficient and compact?
Another thing I am curious about is why, for determining an equilateral triangle, I was unable to create the condition of (a == b == c). It is the proof for an equilateral triangle -- my mother, a former geometry teacher said as much -- but Ruby hates the syntax. Is there an easy explanation as to why this is?
Thank you in advance for your time and responses!
==is an operator that accepts to values (like*or/). it returnstrueorfalse. it is illegal as to not cause confusion (e.g1 == 1 == 1would evaluate tofalseas it is equivalent to(1 == 1) == 1). – glebm Jan 20 '11 at 1:49:equilateral: (a == b) && (b == c) – pkananen May 19 '11 at 20:35